gpt4 book ai didi

cocoa-touch - 动画 UITableViewCell ContentView 在进入编辑模式时淡出

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:34:32 25 4
gpt4 key购买 nike

我在 iPhone Mail.app 和 SMS.app 应用程序中注意到了这个功能,但我不确定自己如何实现它。

在标准的 UITableView 中,当用户点击“编辑”按钮并且删除按钮移动到位时,随着内容 View 向右滑动,它们会执行快速的淡入淡出过渡,由它们自己的更薄版本替换(考虑到删除按钮占用的空间)。

我最初认为这是通过在启用编辑模式时调用以下方法来完成的:

[self.tableView reloadRowsAtIndexPaths: [tableView indexPathsForVisibleRows] withRowAnimation: UITableViewRowAnimationFade];

然而,这不可能是正确的,因为它也会淡化转换删除按钮本身以及单元格具有的任何附属 View (足以说明,它看起来很奇怪)。

我想知道,如何强制内容 View 重绘自身,然后在表格进入编辑模式时将新绘制的版本淡化到旧版本上?

更新:感谢 Caleb 的回答,这是让我得到我想要的东西的最后一段代码:

我的最终解决方案是子类化 UITableViewCell,然后将以下代码应用于 setEditing 访问器:

-(void) setEditing: (BOOL)editing animated: (BOOL)animated
{
[super setEditing: editing animated: animated];

CATransition *animation = [CATransition animation];
animation.duration = 0.2f;
animation.type = kCATransitionFade;

//redraw the subviews (and animate)
for( UIView *subview in self.contentView.subviews )
{
[subview.layer addAnimation: animation forKey: @"editingFade"];
[subview setNeedsDisplay];
}
}

我可能也应该澄清一下。由于性能至关重要,我单元格的 contentView 中的所有内容都通过 CG(即 drawRect:)呈现,因此我无法控制具体在其中绘制的任何元素。

最佳答案

当您在 table 上调用 -setEditing:animated: 时,该动画就会发生。然后该表在每个可见单元格上调用 -setEditing:animated:。看起来表格单元格的标准行为是调整内容 View 的大小,将它们向右移动,然后删除正确的附件。如果您有自己的单元格并希望在编辑模式下有不同的外观,我认为您可以覆盖 -setEditing:animated: 以根据需要调整单元格内容。

关于cocoa-touch - 动画 UITableViewCell ContentView 在进入编辑模式时淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5314284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com