一,效果圖。 二,代碼。 RootViewController.m ...
一,效果圖。
二,代碼。
RootViewController.m
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//顯示圖片的UIImageView
UIImageView *imageview=[[UIImageView alloc]initWithFrame:CGRectMake(50, 100, 200, 200)];
imageview.backgroundColor=[UIColor redColor];
[self.view addSubview:imageview];
//動畫的實現
NSMutableArray * images = [NSMutableArray arrayWithCapacity:6];
for (int i = 1; i <= 6; i++)
{
NSString * imageName = [NSString stringWithFormat:@"%d.jpg",i];
UIImage * image = [UIImage imageNamed:imageName];
[images addObject:image];
}
imageview.animationImages = images;
imageview.animationDuration = 0.3;
[imageview startAnimating];
}