我需要将图片更改为动画视频,但我不知道如何制作视频,不知道有什么好方法?
答案 0 :(得分:0)
将您的图像名称设为xxxx-1.png,xxxx-2.png ...... xxxx-80.png。并粘贴下面的代码..然后图像将像视频一样动画。
NSMutableArray* imgArray = [[NSMutableArray alloc] init];
for (int i=1; i <= 80; i++) {
[imgArray addObject:[UIImage imageNamed:[NSString stringWithFormat:@"xxxx-%d.png",i]]];
}
UIImageView* imgView = [UIImageView alloc] initWithFrame:(x,y,a,b)];
imgView.animationImages = imgArray;
imgView.animationDuration = 0.25;
imgView.animationRepeatCount = 0;
[imgView startAnimating];
[self.view addSubview:imgView];
[imgView release];