I'm creating a UIWebView to load a facebook page of a specific:
NSString *urlAddress = [NSString stringWithFormat:@"http://www.facebook.com/%@",self.userID];
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[webView loadRequest:requestObj];
What I need to know is how to intercept the navigation of a UIWebView such that it only loads the url's of that specific user page. For instance, it would allow navigation in the Wall page, Info page and Photos page of that user ID.
I tried using the delegate method shouldStartLoadWithRequest:. It works well when the user clicks external links like Youtube or whatever, but this method is never called in case, say, the user clicks the facebook home button, which redirects to the home page of the logged in user who is not the corresponding user of the userID passed to the url.
Any help? Thanks very much!