views:

208

answers:

2

i can't find any basic documentation on this sdk (am i just being stupid or looking in the wrong place?). i can't work out what this method:

- (void)request:(FBRequest*)request didLoad:(id)result

actually returns in the case of a request like this:

requestWithGraphPath:@"me/friends"

or this:

requestWithGraphPath:@"me"

result seems to be an nsdictionary, but i don't know what to expect in it etc.

A: 

ok so it's a dictionary with one element (key="data"), which is an array of dictionaries, each with "name" and "id" keys.

jonydep