Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an UIWebView with my application and want to call Objective-C method from JavaScript. All documentation and tutorial that I found, I see is just uses the windowScriptObject method, but in my code Xcode says that webView dont have instance method -windowScriptObject.

What's wrong?

- (void)viewDidLoad
{
    [super viewDidLoad];
    UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];

    NSString *indexPath = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html" inDirectory:@"www"];
    NSURL *url = [NSURL fileURLWithPath:indexPath];
    NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
    [webView loadRequest:requestObj];

    [self.view addSubview:webView];

    id win = [webView windowScriptObject]; // In this line, Xcode alert 'Instance method "-windowScriptObject" not found'
    [win setValue:@"yes" forKey:@"isExtended"];
}
share|improve this question
windowScriptObject seems not to be available on iOS. Check similar question: stackoverflow.com/questions/3501618/… – Michał Zygar Jan 2 '12 at 14:16
@MichałZygar — post it as an answer – ikinci viking Jan 2 '12 at 14:17

1 Answer

up vote 2 down vote accepted

windowScriptObject seems not to be available on iOS. Reference

Also, check similar question: how to use windowScriptObject on the iPhone?

share|improve this answer
Thanks... I'll try other strategy – Henrique Gogó Jan 2 '12 at 14:27

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.