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

How can I make a UIWebView's html/javascript to trigger a UIModalView to show up on page load?

share|improve this question

2 Answers

up vote 1 down vote accepted

You can use one of the following delegates to catch a page before it loads:

- (void)webViewDidStartLoad:(UIWebView *)webView;
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType;

You can check the URL that is being loaded with:

[[[webView request] URL] absoluteString];

Then create and show your UIModalView.

share|improve this answer

i don't think that is possible....

share|improve this answer

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.