Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.