我必须加载动画图像被命名为约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
,但无法弄清楚。