mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 13:51:27 +08:00
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:
@ -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) {
|
||||
|
Reference in New Issue
Block a user