Facebook friend-selector dialog in iphone -


is there way have iphone native app display friend-selector dialog of facebook? or have manually retrieve user's friends , create dialogs myself?

thanks

in current sdk able friend picker.

// initialize friend picker fbfriendpickerviewcontroller *friendpickercontroller =      [[fbfriendpickerviewcontroller alloc] init]; // set friend picker title friendpickercontroller.title = @"pick friends";  // todo: set delegate handle picker callbacks, ex: done/cancel button  // load friend data [friendpickercontroller loaddata]; // show picker modally [friendpickercontroller presentmodallyfromviewcontroller:self animated:yes handler:nil]; 

https://developers.facebook.com/ios/friendpicker-ui-control/


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -