Reputation: 9390
I am new to iphone development.I have created a UIview controller class and added a table view using interface builder. Now i want to create a button in footer view at the end of the table view last cell. I have used UIView Controller class (not UItableview controller).How can i achieve this.
please help me out.
Thanks.
Upvotes: 4
Views: 2230
Reputation: 5064
Create a view with your button on it and set it for the tableFooterView
outlet (if you are using Interface Builder) or property (if you are doing it in code) on you UITableView
.
Upvotes: 3