I'm not able to find any specific examples in apple's documentation on this. I want to add two to three buttons to a table view programmatically, much like the contacts app does with the send text message/ add to favorites buttons on a contacts's info. does anyone know how to configure this?
A:
Check this article out. It's awesome and exactly what you are looking for.
Pablo Santa Cruz
2009-03-20 20:07:54
Nice article, but not exactly what i'm looking for.
Kevlar
2009-03-23 17:15:09
+1
A:
What I've done in my apps is create a view with the buttons on it and return that view in the tableView:viewForHeaderInSection
: and/or tableView:viewForFooterInSection:
methods of the UITableView delegate.
Martin Gordon
2009-03-20 23:17:17