菜鸟教程小白 发表于 2022-12-13 05:58:22

iOS - CATransition 问题 : showing end image at start


                                            <p><p>在我的 <code>UIViewController</code> 中,我使用 image1 创建 <code>CALayer</code>。</p>

<pre><code>CALayer *imageLayer = ;
;
;
;
;
;
;
</code></pre>

<p>稍后在 <code>UIViewController</code> 我想通过使用 <code>CATransition</code> 推送来更改图像。</p>

<pre><code>CATransition *t = ;
t.beginTime = ;
t.type = kCATransitionPush;
t.subtype = kCATransitionFromRight;
.CGImage];   
;
</code></pre>

<p>在运行代码时,我从一开始就得到了 image2,但转换会在 6.5 秒后自行插入。
图1在哪里?怎么了? </p>

<p><strong>正确答案:</strong>
感谢 Jacky Boy 和 Tiago Almeida。
我更正了删除该行的代码</p>

<pre><code>t.beginTime = ;
</code></pre>

<p>并添加“dispatch_after”。</p>

<p>现在可以了:</p>

<pre><code>CATransition *t = ;
t.type = kCATransitionPush;
t.subtype = kCATransitionFromRight;
.CGImage];   
;
;
NSTimeInterval delayInSeconds = 6.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
    .CGImage];
    ;
});
;
</code></pre>

<p>再次感谢各位!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>删除以下行:</p>

<pre><code>t.beginTime = ;
</code></pre>

<p>这就是延迟动画的原因,所以图层在设置新的内容,并且只有在图层动画之后。如果要指定动画的时长:</p>

<pre><code>;
;

CATransition *t = ;
t.type = kCATransitionPush;
t.subtype = kCATransitionFromRight;
.CGImage];
;


;
</code></pre>

<p>或者更小的版本:</p>

<pre><code>CATransition *t = ;
t.type = kCATransitionPush;
;
t.subtype = kCATransitionFromRight;
.CGImage];
;
</code></pre>

<hr/>

<p>我更喜欢这个:</p>

<pre><code>CATransition *transition = ;
transition.type = kCATransitionPush;
transition.duration = .25f;
transition.subtype = kCATransitionFromRight;

_layer.actions = @{@&#34;contents&#34;: transition};
</code></pre>

<p>当你想改变内容时:</p>

<pre><code>.CGImage];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iOS - CATransition 问题 : showing end image at start,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21164305/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21164305/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS - CATransition 问题 : showing end image at start