Fixed iOS BCL to use properties instead of methods.

Fixed web_client to call .toString() on NSString
Fixed BCL project to use version 1.0
This commit is contained in:
hshristov
2014-04-07 13:48:36 +03:00
parent 11818c08df
commit ca201cf9d7
4 changed files with 7 additions and 7 deletions

View File

@@ -51,10 +51,10 @@ export class Image {
}
public getHeight(): number {
return (this.ios) ? this.ios.size().height : NaN;
return (this.ios) ? this.ios.size.height : NaN;
}
public getWidth(): number {
return (this.ios) ? this.ios.size().width : NaN;
return (this.ios) ? this.ios.size.width : NaN;
}
}