8

According to Facebook v4 changelog, all FB*ViewController were deprecated and we should build our own table view controller to show friends list.

Now, before I put myself working on it, does anyone knows an alternative for FBFriendPickerViewController on Facebook v4?

Thanks

Pat Myron
  • 4,437
  • 2
  • 20
  • 39
estemendoza
  • 3,023
  • 5
  • 31
  • 51

1 Answers1

1

FBFriendPickerViewController is no longer available in Facebook SDK 4.X onwards

Instead, you have to call Graph API to fetch the friend list:-

https://graph.facebook.com/USER_ID/invitable_friends

For more information see the docs

Vineeth Joseph
  • 5,177
  • 3
  • 17
  • 31
  • 1
    Thanks for your answer, but I already knew that, I put it on the question above. My question is about if anyone built a replacement for that view controller – estemendoza May 26 '15 at 21:41
  • 1
    The pains you have to go through developing with Facebook, deserve a complete blog... – Jackson Jun 19 '17 at 10:48