gpt4 book ai didi

iphone - 如何在 iPhone 应用程序中为图像制作动画?

转载 作者:行者123 更新时间:2023-11-28 23:03:51 25 4
gpt4 key购买 nike

我有一个简单的图像,我想将其设置为上下动画...如何在 iPhone 应用程序中实现它?

请帮忙

谢谢

最佳答案

您可以使用一组图像并在 1 个 UIImage 中为它们制作动画:

iOS 5:

@interface UIImage (WrightsCS)
+(UIImage *)animatedImageWithImages:(NSArray *)images duration:(NSTimeInterval)duration;
@end

if ( SYSTEM_VERSION_GREATER_THAN(@"5.0") )
{
NSArray *animationFrames = [NSArray arrayWithObjects:
[UIImage imageNamed:@"image_0.png"],
[UIImage imageNamed:@"image_1.png"],
[UIImage imageNamed:@"image_3.png"],
[UIImage imageNamed:@"image_4.png"], nil];

UIImage * animatedImage = [UIImage animatedImageWithImages:animationFrames duration:2.0f];
}

关于iphone - 如何在 iPhone 应用程序中为图像制作动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9628848/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com