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.

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?

share|improve this question

1 Answer

up vote 0 down vote accepted

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"]]];

}

share|improve this answer
thanks..i was just looking for this.. – sohel14_cse_ju Dec 6 '11 at 13:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.