菜鸟教程小白 发表于 2022-12-13 10:29:06

ios - 隐式动画淡入不起作用


                                            <p><p>我有一个 UIView 子类,它试图在它的一个 subview 之上创建一个圆角矩形覆盖。</p>

<p>当我使用下面的代码时,肯定会在我想要的地方出现一个绿色的圆角矩形,但无论我做什么,我都无法让它淡入。</p>

<pre><code>CALayer *parentLayer = ;

// Create a new layer and configure it to be a rounded rect box overlay
CALayer *layer = ;
layer.position = .position;
layer.bounds = CGRectMake(0.0, 0.0, kWTFSliderWidth, kWTFSliderHeight);
layer.backgroundColor = .CGColor;
layer.cornerRadius = 5.0;
layer.borderColor = .CGColor;
layer.borderWidth = 3.0;

// Add the layer with a fade in to the parent layer
;
</code></pre>

<p>我必须手动将 <code>CABasicAnimation</code> 添加到我的父图层对象吗?默认实例不应该已经存在于 <code>parentLayer</code> 的 <code>action</code> 字典中吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>将您的 <code>addSublayer:</code> 调用替换为:</p>

<pre><code>layer.hidden = YES;
;
;
layer.hidden = NO;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 隐式动画淡入不起作用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8661355/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8661355/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 隐式动画淡入不起作用