Add a button in the footer at the end of the table view cell

I am new to iphone development. I created a UIview controller class and added a table view using an interface constructor. Now I want to create a button in the footer at the end of the last cell of the table. I used the UIView Controller class (not the UItableview controller). How can i achieve this.

please help me.

Thanks.

+4
source share
1 answer

Create a view using your button on it and set it to exit tableFooterView (if you use Interface Builder) or a property (if you do this in code) on you UITableView .

+3
source

Source: https://habr.com/ru/post/1304152/


All Articles