属性
UIImageView * imageView = [[UIImageView alloc] initWithFrame:self.window.bounds];
/---------------------属性----------------------/
imageView.image = [UIImage imageNamed:@"name"];
/***************************************
UIViewContentModeScaleToFill, 默认拉伸
UIViewContentModeScaleAspectFit, 按比例拉伸,不会造成形变
UIViewContentModeScaleAspectFill, 按比例铺满整个屏幕,造成变形
***************************************/
imageView.contentMode = UIViewContentModeScaleAspectFill;
imageView.userInteractionEnabled = YES;
播放image动画
NSMutableArray * imageArray = [[NSMutableArray alloc] init];
for (int i = 1; i <= 17; i++) {
UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"campFire%02i.gif",i]];
[imageArray addObject:image];
}
imageView.animationImages =imageArray;
imageView.animationDuration = 2;
imageView.animationRepeatCount = 100;
[imageView startAnimating];