本文介绍了iPhone的邮件应用"载入更多邮件..."的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
目前的的tableview(电子邮件列表)的底部,有一个按钮(?)称为装载更多的消息...,是在tableview中细胞或按钮创建一个按钮作为footerview的一部分创建的实现代码如下。无论哪种方式,我怎么会做类似的事情,在我的tableview?
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?
推荐答案
只需使用一个按钮在tableFooterView
Just use a Button in your tableFooterView
self.tableView.tableFooterView = yourButtonView;
self.tableView.tableFooterView.userInteractionEnabled = YES;
这篇关于iPhone的邮件应用"载入更多邮件..."的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!