2010-12-09 60 views
0

在tableview(電子郵件列表)的底部,有一個名爲「加載更多郵件...」的按鈕(?),是在tableview單元格或作爲tableview的footerview的一部分創建的按鈕。無論哪種方式,我怎麼能在我的tableview中做類似的事情?iPhone郵件應用程序「加載更多郵件...」

回答

1

只需使用一個按鈕在你tableFooterView

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

可以使用第二部分用於與只是一個單一的細胞。

相關問題