ios - 在 iOS 中加载 GIF
<p><p>我正在为我的 iOS 应用程序使用自定义创建的加载微调器,但边缘在彩色背景上看起来很粗糙,正如 GIF 所预期的那样。 </p>
<p>其他应用如何处理这种情况?他们是否使用 GIF 以外的任何东西,也许是 APNG 或其他东西?因为对于 GIF,边缘总是会很粗糙,如果使用哑光,它只会在一种颜色上看起来不错,而在其他颜色上则不好看。</p>
<p>有什么办法吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>UIImageView</code> 类为开发人员实现动画提供了最简单的方法。您需要做的就是创建一个带有一系列动画图像的 <code>UIImageView</code> 对象。</p>
<h3>示例</h3>
<pre><code>// Load images
NSArray *imageNames = @[@"win_1.png", @"win_2.png", @"win_3.png"];
NSMutableArray *images = [ init];
for (int i = 0; i < imageNames.count; i++) {
]];
}
// Normal Animation
UIImageView *animationImageView = [ initWithFrame:CGRectMake(60, 95, 86, 193)];
animationImageView.animationImages = images;
animationImageView.animationDuration = 0.5;
;
;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在 iOS 中加载 GIF,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/23573170/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/23573170/
</a>
</p>
页:
[1]