IOS UI學習教程之使用UIImageView控制項製作動畫_IOS

來源:互聯網
上載者:User

本文執行個體為大家分享了IOS使用UIImageView控制項製作動畫的方法,供大家參考,具體內容如下

先添加40張tomcat的圖片到資源清單中:名稱為cat_eat0000.jpg到cat_eat0039.jpg。
1、定義所需控制項

//  定義按鈕,圖片控制項、可變數組對象  UIButton *actionbuttom;  UIImageView *imageMove;  NSMutableArray *imgsarray;

2、初始化各控制項

//  image動畫//  初始化UIImageView,大小和View的大小相同  imageMove = [[UIImageView alloc]initWithFrame:self.view.frame];//  設定UIImageView的初始化圖片  imageMove.image = [UIImage imageNamed:@"cat_eat0000.jpg"];//  把UIImageView載入到頁面  [self.view addSubview:imageMove];//  設定UIImageView的互動性為yes  imageMove.userInteractionEnabled = YES;    //  建立功能按鈕//  初始化按鈕  actionbuttom = [[UIButton alloc]initWithFrame:CGRectMake(100, 680, 218, 50)];//  設定按鈕背景色  actionbuttom.backgroundColor = [UIColor yellowColor];//  設定按鈕標題  [actionbuttom setTitle:@"開始播放" forState:UIControlStateNormal];//  設定按鈕文字顏色  [actionbuttom setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];//  為按鈕添加觸發事件  [actionbuttom addTarget:self action:@selector(startmove:) forControlEvents:UIControlEventTouchUpInside];//  把按鈕添加到頁面中  [imageMove addSubview:actionbuttom];      //  初始化可變數組,用來存放圖片  imgsarray = [[NSMutableArray alloc]initWithCapacity:40];//  迴圈從資源中拿到四十張圖片,並添加到imgsarray。  for (int x=0; x<40; x++) {    NSString *imgname = [NSString stringWithFormat:@"cat_eat00%.2d.jpg",x];    UIImage *img = [UIImage imageNamed:imgname];    [imgsarray addObject:img];

3、設定按鈕觸發動畫播放

//按鈕的觸發事件-(void)startmove:(id)sender{//  設定動畫時間長度  imageMove.animationDuration = 2;//  設定動畫圖片來源為圖片數組  imageMove.animationImages = imgsarray;//  設定動畫重複次數,0是無限迴圈,1為重複1次  imageMove.animationRepeatCount = 1;//  開始播放  [imageMove startAnimating];  }

以上就是本文的全部內容,希望對大家學習使用UIImageView控制項製作動畫有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.