进入编辑模式时的 UITableView 动画

发布于 2024-08-31 21:29:45 字数 382 浏览 5 评论 0原文

也许我只是愚蠢,但我不明白为什么这不起作用。 当我在 UITableView 中进入编辑模式时,我想实现一些动画。

 [super setEditing:NO animated:YES];   
 [myTable setEditing:NO animated:YES];
 [myTable reloadData];
 [self.navigationItem.leftBarButtonItem setTitle:@"Edit"];
 [self.navigationItem.leftBarButtonItem setStyle:UIBarButtonItemStylePlain];

这个动画:是应该为进入编辑模式设置动画吗?

问候。
- f0rz

Maybe I´m just stupid but I cant understand why this isnt working.
I want to achieve a little animation when I'm entering editing mode within a UITableView.

 [super setEditing:NO animated:YES];   
 [myTable setEditing:NO animated:YES];
 [myTable reloadData];
 [self.navigationItem.leftBarButtonItem setTitle:@"Edit"];
 [self.navigationItem.leftBarButtonItem setStyle:UIBarButtonItemStylePlain];

Shouldnt this animated:YES suppose to animated this entering of the editmode?

Regards.
- f0rz

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

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

发布评论

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

评论(1

厌倦 2024-09-07 21:29:45

解决方案,我正在重新加载 tableview 。这导致动画停止。
删除 [myTable reloadData] 并且它再次工作!

Solution, I was reloading the tableview . This was making the animation to stop.
Removed [myTable reloadData] and it worked again!

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