i use the following code to send a request to the graph api and display it in a label
[FBRequestConnection startWithGraphPath:@"40123148903?fields=picture" completionHandler:^(FBRequestConnection *connection, id<FBGraphObject> result, NSError *error)
{
if(!error)
{
self.tryLabal.text = [[[result objectForKey:@"picture"] objectForKey:@"data"]objectForKey:@"url"];
}
}
];
the problem is it only lets me use the graph object inside the block. i want to keep the returned result.
i tried declaring a id property and assigning it the result id
self.tryGraphObject = result;
i have some more information thanks to a member here: in ios facebook sdk 3.0 we handled the results from an graph api call with a facebook delegate that was called when a reply came back. now in 3.1 they changed the logic so that each request comes with a block called "completion hander" that lets you handle the results. problem is i can't save the results for further use because for some reason it doesn't let me
edit:turns out i was wrong, the problem is different. i broke the code down and it turns out i thought it wasn't setting the property, but it was. just after the view loaded. basically it kept running the code while its waiting for the reply from facebook which means the view loaded before the values returned so it displays a view based on empty propertys. what can i do?
self.tryGraphObject = result;? – newacct Nov 20 '12 at 19:09