如何在滚动 iPhone 上向 tableview 添加元素?
我正在使用 UITableView,从 Web 服务列出元素。
我需要做的是首先从 Web 服务调用 20 个元素并显示在列表中,当用户向下滚动时从 Web 服务调用另外 20 个记录并添加到表视图中。
如何要这样做吗?
i'm using a UITableView, list elements from web service..
what i need to do is first call 20 elements from web service and display in list, when the user scroll down call another 20 records from webservice and add to tableview..
how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以从 Web 服务加载 20 个项目并将它们存储到数组中。然后,创建一个表视图并显示这 20 个项目。如果您希望滚动操作触发加载,那么只需成为表视图的 UIScrollView 的委托即可。否则,您可能只有一个显示“加载更多”的按钮。当您想要加载更多时,只需下载数据并更新列表中的项目数并重新加载表视图。
You can load your 20 items from your web service and store them into an array. Then, create a table view and display those 20 items. If you want the scrolling action to trigger the loading then just become the delegate of the UIScrollView of the table view. Otherwise you could just have a button that says "Load More." When you want to load more just download the data and update the number of items in the list and reload the table view.
这是不可行的。
在视图加载时调用 Web 服务并创建选项数组,然后调用表视图的表数据源函数。
This is not feasible do it in pieces.
at view load time call web service and make array of options then call table data source function for table view.