是否可以为 UIImage 设置动画?

2023-03-24移动开发问题
2

本文介绍了是否可以为 UIImage 设置动画?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我想知道是否有动画UIImage.

我知道 UIImageViews 可以制作动画,但有什么方法可以直接在 UIImage 中制作.

I know that UIImageViews are possible to animate but is there any way to do it directly in a UIImage.

也许使用 Open GL ES 或其他什么?

Maybe with Open GL ES or something?

或者还有其他方法可以为 MPMediaItemArtwork 设置动画吗?

Or are there any other ways you can animate an MPMediaItemArtwork?

提前致谢!

推荐答案

创建一个UIImageView并将animationImages的属性设置为UIImage的数组代码>s

Create a UIImageView and set the property of animationImages to an array of UIImages

这是一个例子:

NSArray *animationFrames = [NSArray arrayWithObjects:
  [UIImage imageWithName:@"image1.png"],
  [UIImage imageWithName:@"image2.png"], 
  nil];

UIImageView *animatedImageView = [[UIImageView alloc] init];
animatedImageView.animationImages = animationsFrame;
[animatedImageView startAnimating];

如果您的目标是 iOS 5,您可以直接在 UIImage 中执行此操作,而无需使用 UIImageView

If you're targeting iOS 5 you can do this directly in UIImage without the UIImageView using

    +(UIImage *)animatedImageWithImages:(NSArray *)images duration:(NSTimeInterval)duration 

例如,

    [UIImage animatedImagesWithImages:animationFrames duration:10];

这篇关于是否可以为 UIImage 设置动画?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

硬件音量按钮更改应用程序音量
Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)...
2024-08-12 移动开发问题
10

Cocos2d - 如何检查不同层中对象之间的交集
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)...
2024-08-12 移动开发问题
8

突出显示朗读文本(在 iPhone 的故事书类型应用程序中)
Highlight Read-Along Text (in a storybook type app for iPhone)(突出显示朗读文本(在 iPhone 的故事书类型应用程序中))...
2024-08-12 移动开发问题
9

Cocos2D + 仅禁用 Retina iPad 图形
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)...
2024-08-12 移动开发问题
10

如何将 32 位 PNG 转换为 RGB565?
How to convert 32 bit PNG to RGB565?(如何将 32 位 PNG 转换为 RGB565?)...
2024-08-12 移动开发问题
21

正确的 cocos2d 场景重启?
Proper cocos2d scene restart?(正确的 cocos2d 场景重启?)...
2024-08-12 移动开发问题
7