在 UITableView 上延迟重新加载数据
我有一个 UITableView。点击按钮后,我想显示我的自定义视图,然后,一旦视图可见,就从表视图中删除特定项目。自定义视图隐藏了表格视图,因此我希望在新视图可见后进行删除。
目前,我有这个,它添加了自定义视图,然后应该删除该项目,并重新加载表格,但重新加载是在动画结束时发生的(我有一个动画块,更改视图阿尔法),所以我可以看到更新。
[self.view addSubview:customView];
[itemArray removeObject:object];
[self.tableView reloadData];
如何将重新加载延迟到视图可见之后?
谢谢。
I have a UITableView. On the tap of a button i want to display my custom view, then, once the view is visible, remove a particular item from the tableview. The custom view hides the tableview so i would like the remove to occur after this new view is visible.
Currently, i have this, which adds the custom view and then should remove the item, and reload the table, but the reload is occurring just as the animation ends (i have an animation block, changing the views alpha), so i can see the update.
[self.view addSubview:customView];
[itemArray removeObject:object];
[self.tableView reloadData];
How can i delay the reload until after the view is visible?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试将 reloadData 添加到 viewDidAppear 中:
这应该会给您带来所需的延迟。
Try adding reloadData to
viewDidAppear
:That should give you the required delay.
您提到您自己正在为视图设置动画;当动画完成时,您应该使用以下内容调用
reloadData
:或者如果您使用基于块的 API:
You mention you're animating the view yourself; you should call
reloadData
when the animation completes by using something like:or if you're using the block-based API:
或者您可以使用 PerformSelector 方法:
or you can use the performSelector method :