当表视图单元格中有 MKMapview 时 UITableView 重新加载数据问题

发布于 2024-11-18 03:25:51 字数 385 浏览 4 评论 0原文

我正在编写一个应用程序,可以从网络加载数据,然后将数据放入分组的 uitableview 中,其中我将数据放在第一部分中,同时,我想将这些数据绘制在表的第二部分中的地图视图上。

我设法在表格视图中实现这些,并且效果很好。然后我在导航栏上添加一个刷新按钮,因此如果有人按下刷新按钮,应用程序将再次从网络获取数据并使用新数据重新加载表格视图。

问题来了,当我刷新数据并调用方法 reloaddata 时,两个部分中的所有表格单元格都会刷新,我的意思是,每次我按刷新按钮。但我只想根据刷新的数据重新绘制注释,而不是地图。

我认为问题来自于 [self.tableView重新加载数据] 方法。有没有办法只重新加载第一部分的数据而不是分组表视图中的所有部分?

任何建议或评论表示赞赏!谢谢!

I am writing an app can load data from from web, then put the data in a grouped uitableview, where I put data in the first section, and meantime, I want to plot these data on a mapview in the second section of table.

I managed to implement these in the tableview, and it works fine. Then I add a refresh button on the navigation bar, so if someone press the refresh button, the app will fetch data from web again and reload the tableview with the new data.

Here comes the problem, when I refresh the data and call the method reloaddata, all table cells in both section get refreshed, I mean, the map is re-loaded and animated zoom in from world map to the interest region every time I press the refresh button. But I only want re-plot the annotations based on the refreshed data, not the map.

I think the problem come from the call of
[self.tableView reloadData]
method. Is there a way just to reload data for the first section rather than all sections in a grouped tableview?

Any suggestion or comment is appreciated! Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤星 2024-11-25 03:25:51

您可以使用 - reloadRowsAtIndexPaths:withRowAnimation: (在 UITableView 类参考)来做到这一点。你只需要创建一个你想要更新的行的索引路径的 NSArray ,它就会重新加载那些

You can use - reloadRowsAtIndexPaths:withRowAnimation: (in the UITableView Class Reference) to do just that. You will just need to create an NSArray of the index path/paths of the row/rows you want to update and it will reload just those

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文