I have three views on my apps.
first view is request for user login.
second is request the friends list.
third is page have UIWebView for user profile page.
In the third view Facebook Session is open [check it -> FBSession.activeSession.isOpen]
but I cannot open friend url with
NSURL *friendURL = [NSURL URLWithString:[NSString stringWithFormat:@"http://www.facebook.com/%@", self.friendID]];
NSURLRequest *request = [NSURLRequest requestWithURL:friendURL];
I'd like to know how to open it ?
Thanks for advance.