Using the Facebook iOS SDK, how can I get an NSArray of all my friends and send them an invitation to my app? I am specifically looking for the graph path to ge
NSArray
Maybe this could help
[FBRequestConnection startForMyFriendsWithCompletionHandler: ^(FBRequestConnection *connection, id friends, NSError *error) { if(!error){ NSLog(@"results = %@", friends); } } ];