菜鸟教程小白 发表于 2022-12-13 16:52:23

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


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

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

<p>我最初以为是在启用编辑模式时调用以下方法来完成的:</p>

<pre><code> withRowAnimation: UITableViewRowAnimationFade];
</code></pre>

<p>但这不可能是正确的,因为它还会淡化删除按钮本身以及单元格具有的任何辅助 View (我只想说,它看起来很奇怪)。</p>

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

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

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

<pre><code>-(void) setEditing: (BOOL)editing animated: (BOOL)animated
{
    ;

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

    //redraw the subviews (and animate)
    for( UIView *subview in self.contentView.subviews )
    {
      ;
      ;
    }
}
</code></pre>

<p>我可能也应该澄清一下。由于性能是最重要的,我单元格的 contentView 中的所有内容都是通过 CG 渲染的(即 drawRect:),所以我无法控制那里具体绘制的任何元素。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>当你在 table 上调用 <code>-setEditing:animated:</code> 时,动画就会发生。然后表格在每个可见单元格上调用 <code>-setEditing:animated:</code>。看起来表格单元格的标准行为是调整内容 View 的大小,将它们向右移动,并移除正确的附件。如果您有自己的单元格并希望在编辑模式下具有不同的外观,我认为您可以覆盖 <code>-setEditing:animated:</code> 以根据需要调整单元格内容。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于cocoa-touch - 动画 UITableViewCell ContentView 在进入编辑模式时淡出,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/5314284/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/5314284/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: cocoa-touch - 动画 UITableViewCell ContentView 在进入编辑模式时淡出