Umair_uas
Umair_uas

Reputation: 673

Forcefully open info page of facebook fan page on UIwebview in iPhone

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

enter image description here

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

Answers (1)

phi
phi

Reputation: 10733

In my case, the link you give is opening the info page:

enter image description here

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

Related Questions