ios - UIImageView.animationImages 显示带有旋转的图像
<p><p>我有一个 UIImageView,它应该为名为 <code>capturedImages</code> 的图像数组设置动画。我的动画设置如下:</p>
<pre><code>imageView = [ init];
imageView.frame = CGRectMake(0, 48, 320, 520);
imageView.animationImages = capturedImages;
imageView.animationDuration = 3.0;
imageView.animationRepeatCount = 0; //animate forever
;
;
</code></pre>
<p> captureImages 中的图像是在手机/相机 View 直立的情况下拍摄的。但是,当 imageView 显示它们时,它们会正确设置动画,但会逆时针旋转 90 度。有没有办法改变 <code>animationImages</code> 的方向,还是我必须单独设置每个图像的方向?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>最简单的解决方案可能是只旋转 <code>UIImageView</code> 本身。<br/>
您可以使用 <code>UIView</code> 的 <code>transform</code> 属性来执行此操作:</p>
<pre><code>;
</code></pre>
<p>请注意,如果您开始显示已经处于正确方向的图像,这将中断。这些也会顺时针旋转 90 度。</p></p>
<p style="font-size: 20px;">关于ios - UIImageView.animationImages 显示带有旋转的图像,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/24943024/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/24943024/
</a>
</p>
页:
[1]