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

@ -12,7 +12,7 @@ export class Client {
try {
Client.get(url, function (data) {
if (successCallback) {
successCallback(Foundation.NSString.initWithDataEncoding(data, 4));
successCallback(Foundation.NSString.initWithDataEncoding(data, 4).toString());
}
}, errorCallback);
} catch (ex) {