2010-12-09 78 views
0

在tableview(电子邮件列表)的底部,有一个名为“加载更多邮件...”的按钮(?),是在tableview单元格或作为tableview的footerview的一部分创建的按钮。无论哪种方式,我怎么能在我的tableview中做类似的事情?iPhone邮件应用程序“加载更多邮件...”

回答

1

只需使用一个按钮在你tableFooterView

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

可以使用第二部分用于与只是一个单一的细胞。

相关问题