Search code examples
iphoneobjective-ciosfacebook

Get Facebook news feed with iOS?


I am starting out with the Facebook SDK for iOS and in my app I am trying to get the users news feed and load it into a uitableview. This is proving tricky.

I can't find any documentation on it either.


Solution

  • using the Facebook SDK, you can call Facebook Graph API using:

    [facebook requestWithGraphPath:@"me/home" andDelegate:self]; 
    

    to get the current user's newsfeed. You can then use the returned data to populate your tableview. More info about TableView can be found at http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/TableView_iPhone/TableViewStyles/TableViewCharacteristics.html