Get Facebook News Feed iOS?

I am starting with the Facebook SDK for iOS, and in my application I am trying to get a feed for users and upload it to a uitableview. It's complicated.

I also can not find the documentation. Any help would be appreciated, thanks.

+3
source share
2 answers

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

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

to get current news for users. You can then use the returned data to populate the table. More information about TableView can be found at http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/TableView_iPhone/TableViewStyles/TableViewCharacteristics.html

+8

@ "me/home" ( , )

, me/home iOS Android, Facebook read_stream, /. , Facebook, read_stream

: 1) me/feed, 2) / page-id/feed

0

All Articles