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

List<T>().Add problem C# -

Javascript natural sort array/object and maintain index association -