ReloadData 不调用 CellForRowAtIndexPath

发布于 2024-11-17 05:04:42 字数 260 浏览 5 评论 0原文

我绝对确定我的 ReloadData 调用不会调用 cellforrowatindexpath。我有一个 NSMutableArray,其中充满了 500 个值,我完全清除了这些值,然后调用 [self.tableView reloadData]; 并且没有任何反应。我设置断点,它调用行数,但不调用 cellforrow。我设置正确,我百分百确定,但我想知道是否有不同的方法来重新加载到空表格视图。

提前致谢。

I am absolutely sure that my ReloadData call does not call the cellforrowatindexpath. I have an NSMutableArray that is full of 500 some values that I clear completely, then call [self.tableView reloadData]; and nothing happens. I put breakpoints and it calls number of rows but not cellforrow. I set it up correctly I am a hundred percent sure but I am wondering if there is a different method to reload to a empty tableview.

Thanks in advance.

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

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

发布评论

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

评论(1

卸妝后依然美 2024-11-24 05:04:42

它只是执行预期的操作。如果清除 NSMutableArray,则其中没有任何条目。行数将返回 0,因此没有要调用 cellForRow 的行。

It simply does what is expected. If you clear your NSMutableArray, there are no entries in it. Number of rows will return 0, and hence there are no rows to call cellForRow for.

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