How do I store the following output into an array.
[[delegate facebook] requestWithGraphPath:@"me/friends" andDelegate:self];
This is a list of Facebook friends for an iOS app and I need to store it as an NSArray I'm guessing.
thanks for any help
|
How do I store the following output into an array. [[delegate facebook] requestWithGraphPath:@"me/friends" andDelegate:self]; This is a list of Facebook friends for an iOS app and I need to store it as an NSArray I'm guessing. thanks for any help |
|||||||
|
|
I just did this recently. Here's how I did it. Call the request method as mentioned above:
The request when successful will call the delegate method:
This will return an NSDictionary with a key labelled 'data'. Get the friends array by calling
Then, you can loop through that array using a standard for loop and either extract the names you want or use a custom 'Facebook friend class' that stores both the name and the id. To store just the names do something like this:
That should give you an array of just the your friends' names. |
|||||||||
|
|
|||
|
|