Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am working with a nav based app. which parses a feed and displays a tableView. tableView shows titles of all feed items. i want to add a button in the end of the tableView and when user will click that button, it should like the specific facebook group. i already have the FB Connect API integrated into my application. how can i do that like button? thanx in advance

share|improve this question

1 Answer

UITableViewCells have an accessoryView (and an accessoryType). Check out the docs for UITableViewCell. You can place a button at the right of your cell as an accessory view.

Highly recommended reading:

http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html

and then:

http://cocoawithlove.com/2010/12/uitableview-construction-drawing-and.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.