I want to show my facebook fan page inside of my iphone app. Can anyone suggest me the proper way to do that or show me any example?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Just call the fan page url as follows, .h @interface socailNetworking : UIViewController { IBOutlet UIWebView *socailNetworkingWeb; } @end .m -(void)facebook { self.navigationItem.title=@"FaceBook"; [socailNetworkingWeb loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.facebook.com/pages/Gantec-Publishing-Solutions/131691573583238?sk=wall"]]]; } |
||||
|
|