如何在 UIScrollView 的底部添加 UIRefreshController。
我正在 UIScrollView 中实现加载更多选项,以便我可以将更多数据加载到 ScrollView 中。
在此先感谢...
Best Answer-推荐答案 strong>
将您的数据放入表格 View 中,然后可以使用标准的 UITableViewDelegate 回调轻松完成。不要试图操纵 Apple 自己的 UIRefreshControl 进入表格或 ScrollView 的底部,因为它会以麻烦告终。
这样做:
在您的 tableView:numberOfRowsInSection: 中返回 data.count+1
在您的 tableView:cellForRowAtIndexPath: 中检查 if (indexPath.row == data.count) 。如果是这样,创建并返回一个基本单元格,其文本标签设置为“加载更多...”
在您的 tableView:didSelectRowAtIndexPath: 中再次检查 if (indexPath.row == data.count) 。如果是这样,请触发您自己的 [self loadMoreData] 方法,然后调用 [self.tableView reloadData] 。
关于ios - ios中uiscrollview的底部刷新控件,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37695048/
|