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

I have a native iPhone app loading a cached jQTouch web app inside UIWebView. How can elements within the jQTouch app seamlessly link to elements and actions in the native app (if at all)?

When loading a web app page, a link when pressed, sends an id to the native app.

share|improve this question
Did you understand my answer ? – Francescu Nov 10 '10 at 10:16
@F.Santoni yes, sorry I up voted but was waiting on other potential answers/solutions to see if other solutions may have worked better but your answer makes sense and is what I would have expected, thank you. – Peter Craig Nov 12 '10 at 1:26

1 Answer

up vote 3 down vote accepted

Yes !

The best way to do a such thing is to implement a UIWebView delegate.

Then you choose an event url scheme (like http://id:123/click/ )

And just parse the URL in this method :

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

You can check the URL value with :

[request.URL absoluteString]
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.