我正在尝试创建具有某些图像约束的动画 UIImageView。
我希望 UIImageView 的动画尺寸为 141x262,而不是整个屏幕。目前我有这个代码:
CJ = [[UIImageView alloc] initWithFrame:self.view.frame];
CJ.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"CJ_1.png"],
[UIImage imageNamed:@"CJ_2.png"],
[UIImage imageNamed:@"CJ_3.png"], nil];
CJ.animationDuration = 1;
CJ.animationRepeatCount = 0;
[CJ startAnimating];
[self.view addSubview:CJ];
任何和所有的帮助将不胜感激!