开发者

iPhone Mail app "Load More Messages..."

开发者 https://www.devze.com 2023-01-29 09:47 出处:网络
At the bottom of the tableview (list of emails), there is a button (?) called \"Load More Messages...\", is that a button created in the tableview cell or a button created as part of the footerview开发

At the bottom of the tableview (list of emails), there is a button (?) called "Load More Messages...", is that a button created in the tableview cell or a button created as part of the footerview开发者_开发知识库 of the tableview. either way, how could I do the similar thing in my tableview?


Just use a Button in your tableFooterView

self.tableView.tableFooterView = yourButtonView;
self.tableView.tableFooterView.userInteractionEnabled = YES;


You can use a second section for that with just a single cell.

0

精彩评论

暂无评论...
验证码 换一张
取 消