// 在界面上添加圖片容器
// UIImageView關聯界面上的圖片容器
@property (weak, nonatomic) IBOutlet UIImageView *imageContainer;
// 定義容易保存所有圖片
// 1.定義容器保存所有圖片
? ? NSMutableArray *arrM = [NSMutableArray array];
// 2.加載所有圖片
? ? for (int i = 1; i <= 36; i++) {
? ? ? ? ? NSString *imageName = [NSString stringWithFormat:@"img_360car_black_%02d", i];
? ? ? ? ? UIImage *image = [UIImage imageNamed:imageName];
? ? ? ? ? [arrM addObject:image]; ?
? ? ?}
// 3.將圖片設置給圖片容器
? ? ? self.imageContainer.animationImages = arrM;
// 4.監(jiān)聽屏幕點擊方法
? ? ? ?-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
? ? ? ? ? // 1.設置動畫時長
? ? ? ? ? self.imageContainer.animationDuration = 5;
? ? ? ? ? // 2.設置動畫重復次數
? ? ? ? ? self.imageContainer.animationRepeatCount = 1;
? ? ? ? ? // 3.開始動畫
? ? ? ? ? [self.imageContainer startAnimating];
? ? ?}?