I'm new to Objective C.
I'm developing an application for IOS using Cordova 2.2.0, this applications use the token for pushNotification and as own ID to do some other functions. I got the token from the AppDelegated, now I'm trying to parse the token to inside the Javascript.
I've tried to create a function to do that:
- (void) sendToken:(NSString*) data
{
NSString* token = [NSString stringWithFormat:@"%@", data];
NSString * jsCallBack = [NSString stringWithFormat:@"callmeFromObjC('%@')",self._webview];
[self._webview stringByEvaluatingJavaScriptFromString:jsCallBack];
}
I've tried to create a globale variable "_webview" and i assigned the current webview (from "webViewDidFinishLoad") but it doesn't work, it gives me error in "self._webview".
any suggestions ?
