M.B
M.B

Reputation: 885

Getting Facebook Friendlist in IOS 5

I want to get facebook friendlist on my table in Iphone Application.I am using IOS 5. Is Graph API support to IOS 5 to get facebook friendlist? or any other way to do that work. Please suggest me. Thanks

Upvotes: 0

Views: 1738

Answers (2)

Bharat Jagtap
Bharat Jagtap

Reputation: 1692

You can check the below link on developer.facebook.com . It explains the steps in details. https://developers.facebook.com/docs/mobile/ios/build/#register But before that I think there should be a lof if existing questions on the stackoverflow for the same ....

Upvotes: 0

Aravindhan
Aravindhan

Reputation: 15628

You can use the Graph API for getting the user's friend list..

// get the logged-in user's friends

[facebook requestWithGraphPath:@"me/friends" andDelegate:self];   

Upvotes: 1

Related Questions