這是一篇關於iOS中圖像移動的實例編程,看看小編為大家整理的吧!
//打開 ViewController.m 文件:
//解開(void)viewDidLoad
- (void)viewDidLoad {
//定義圖片的位置和尺寸,位置:x=10.0f, y=10.0f ,尺寸:x=50.0f, y=40.0f
UIImageView *subview = [[UIImageView alloc] initWithFrame:
CGRectMake(10.0f, 10.0f, 50.0f, 40.0f)];
//設定圖片名稱,myPic.png已經存在,拖放添加圖片文件到image項目文件夾中
[subview setImage:[UIImage imageNamed:@"myPic.png"]];
//啟用動畫移動
[UIImageView beginAnimations:nil context:NULL];
//移動時間2秒
[UIImageView setAnimationDuration:2];
//圖片持續移動
[UIImageView setAnimationBeginsFromCurrentState:YES];
//重新定義圖片的位置和尺寸,位置
subview.frame = CGRectMake(60.0, 100.0,200.0, 160.0);
//完成動畫移動
[UIImageView commitAnimations];
//在 View 中加入圖片 subview
[self.View addSubview:subview];
//使用後釋放圖片, 使用iOS5,對像為iOS4.3以上可以忽略這步驟
[subview release];
}
以上就是小編為大家整理的關於iOS中圖像移動的實例編程,希望對大家有所幫助。