我要为动画加载大约 300 张图像,这些图像被命名为loading001.png, loading002.png, loading003.png, loading004.png………loading300.png
我正在按照以下方式进行操作。
.h 文件
#import <UIKit/UIKit.h>
@interface CenterViewController : UIViewController {
UIImageView *imgView;
}
@end
.m 文件
@implementation CenterViewController
- (void)viewDidLoad {
[super viewDidLoad];
imgView = [[UIImageView alloc] init];
imgView.animationImages = [[NSArray alloc] initWithObjects:
[UIImage imageNamed:@"loading001.png"],
[UIImage imageNamed:@"loading002.png"],
[UIImage imageNamed:@"loading003.png"],
[UIImage imageNamed:@"loading004.png"],
nil];
}
- (IBAction)startAnimation:(id)sender{
[imgView startAnimating];
}
@end
有没有一种有效的方法将图像加载到数组中。我曾尝试过,for loop
但无法弄清楚。