I am sending the following request for getting the user statuses.
[facebook requestWithGraphPath:@"me/statuses" andParams:params andDelegate:self];
Then I am storing the response received in an array.
NSArray *resultData = [[result objectForKey:@"statuses"] objectForKey:@"data"];
if([resultData count] > 0) {
for (NSUInteger i=0; i<[resultData count] && i < 25; i++) {
[status addObject:[resultData objectAtIndex:i]];
}
}
I am able to display the statuses in a tableview.
cell.textLabel.text = [[status objectAtIndex:indexPath.row] objectForKey:@"message"];
How can i get the comments for each status?
First of all, You should get your post id,Then hit the post id to see the comments like two steps
Save all the post then on each post your request to fetch comments on post like this..
You can get help from here