0
在tableview(電子郵件列表)的底部,有一個名爲「加載更多郵件...」的按鈕(?),是在tableview單元格或作爲tableview的footerview的一部分創建的按鈕。無論哪種方式,我怎麼能在我的tableview中做類似的事情?iPhone郵件應用程序「加載更多郵件...」
在tableview(電子郵件列表)的底部,有一個名爲「加載更多郵件...」的按鈕(?),是在tableview單元格或作爲tableview的footerview的一部分創建的按鈕。無論哪種方式,我怎麼能在我的tableview中做類似的事情?iPhone郵件應用程序「加載更多郵件...」
只需使用一個按鈕在你tableFooterView
self.tableView.tableFooterView = yourButtonView;
self.tableView.tableFooterView.userInteractionEnabled = YES;
可以使用第二部分用於與只是一個單一的細胞。