// ************************ 应用场景。 图片动画效果。bottomLeft :让图片按比例 成为左下角的一部分。//1. 加载所有的图片NSMutableArray* standImages = [NSMutableArray array ];
for ( int i = 0 ; i< 10 ; i++)
{
//获取所有图片的名称
NSString *imageName = [NSString stringWithFormat :@“stand_%d”, i + 1];
// 创建UIImage
UIImage *image = [UIImage imageNamed: imageName ];
//装入数组
[standImage addObjet :image ];
}
// 2 .设置动画图片
self. imageView.animationImages = standImages ;
// 3. 设置播放次数
self.imageView.animationRepeatCount = 0 ;
// 4. 设置播放的时长
self.imageView .animationDuration = 0.8 ; //总时长
// 5. 播放
[self. imageView startAnimating ];
6. 站立(延迟)
selector 方法, object 参数 , afterDelay 延迟时间。
[self performSelector :@selector (stand) withObject : nil afterDelay:self.imageView.animationDuration ];
// imageView默认情况下,是不能与用户交互的。开启交互
imageView.userInteractionEnabled = YES;
//2. 添加图片到scrollview 中
for (int i = 0; i<4; i++) {
UIImageView *imageView = [[UIImageView alloc]init];
imageView.size = self.view.size;
imageView.y = 0;
imageView.x = i*imageView.width;
NSString *name = [NSString stringWithFormat:@"new_feature_%d",i+1];
imageView.image = [UIImage imageNamed:name];
[scrollView addSubview: imageView];
}
方法二 :在图片中设置
1.如果是正方形的 就设置 slicing 为 水平和垂直的。
- 如果是QQ 聊天类型的图片 就查看图片像素 比如 Size 128 -112 pixels
就在left 设置64 right 63 top 56 Bottom 39 width = height = 1 ;