tags:

views:

15

answers:

1

How to use the Facebook iphone sdk?I want to make a facebook application that will have a search bar and after entering data in the search bar whatever information will be returned from the facebook database i need to display it in the tableview...please help me in this regard

A: 

From reading through Facebook's iPhone SDK, it looks like you can construct a Facebook Query Language (FQL) query and asynchronously receive the results which you'd use to populate your UITableView.

See the iPhone SDK Samples for how to do UITableView population and a search box, or see this article.

JBRWilkinson