Reputation: 673
I want to open info page through this link on uiwebview
http://www.facebook.com/TinRoofNashville?sk=info
But on my iPhone screen it looks like this
I want to open info tab first not Activity tab on webview, but the activity tab opens by default.
How can i do that? Info tab exist in more tab.
Upvotes: 0
Views: 493
Reputation: 10733
In my case, the link you give is opening the info page:
But as you can see, I am not logged in. Could it be the problem maybe?
In any case, you can use the delegate's -(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
and print in the console the URL when you tap on the "info" page, to see what changes.
Upvotes: 1