国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

IOS 開發之UIView動畫的實例詳解

2020-07-26 02:45:16
字體:
來源:轉載
供稿:網友

IOS 動畫實例詳解

iOS動畫的實現方式多種多樣,這里就只記錄一下 beginAnimations:context 。

在你調用 beginAnimations:context:方法來啟動一個動畫后,動畫并不會立即被執行,直 到你調用 UIView 類的 commitAnimations 類方法。你對一個視圖對象執行的介于 beginAnimations:context:方法跟 commitAnimations方法之間的操作(例如移動)會在 commitAnimations 被執行后才會生效 。

實現效果圖:

代碼很簡單,直接貼了,如下:

// // ViewController.m // Graphics // // Created by aaron on 14b-5-29. // Copyright (c) 2014年 The Technology Studio. All rights reserved. //  #import "ViewController.h"  @interface ViewController () @property(nonatomic,strong) UIImageView *imageView1; @property(nonatomic,strong) UIImageView *imageView2;  @end  @implementation ViewController  - (void)viewDidLoad {   [super viewDidLoad];      UIImage *image = [UIImage imageNamed:@"1.png"];   self.imageView1 = [[UIImageView alloc] initWithImage:image];   self.imageView2 = [[UIImageView alloc] initWithImage:image];   [self.imageView1 setFrame:CGRectMake(0.0f,                      0.0f,                      100.0f,                      100.0f)];      [self.imageView2 setFrame:CGRectMake(220.0f,                      350.0f,                      100.0f,                      100.0f)];   [self.view addSubview:self.imageView1];   [self.view addSubview:self.imageView2];    //  [self startTopLeftImageViewAnimation]; //  [self startBottomRightViewAnimationAfterDelay:2];   [self affineTransformScaleAnimation];   [self affineTransformRotateAnimation];    }  //imageView2 animation -(void)startTopLeftImageViewAnimation{   [self.imageView1 setFrame:CGRectMake(0.0f,                      0.0f,                      100.0f,                      100.0f)];   [self.imageView1 setAlpha:1.0f];   [UIView beginAnimations:@"imageView1Animation" context:(__bridge void*)self.imageView1];   [UIView setAnimationDuration:3.0f];   [UIView setAnimationDelegate:self];   [UIView setAnimationDidStopSelector:@selector(imageViewDidStop:finished:context:)];   [self.imageView1 setFrame:CGRectMake(220.0f, 350.0f, 100.0f, 100.0f)];   [self.imageView1 setAlpha:0.0f];   [UIView commitAnimations]; }  -(void)imageViewDidStop:(NSString*)paramAnimationID finished:(NSNumber*)paramFinished context:(void*)paramContext{   NSLog(@"AnimationID = %@/n",paramAnimationID);   UIImageView *contextImageView = (__bridge UIImageView *)(paramContext);   NSLog(@"contextImageView = %@",contextImageView);   [contextImageView removeFromSuperview]; }   //imageView2 animation -(void)startBottomRightViewAnimationAfterDelay:(CGFloat)paramDelay{   [self.imageView2 setFrame:CGRectMake(220.0f,                      350.0f,                      100.0f,                      100.0f)];   [self.imageView2 setAlpha:1.0f];   [UIView beginAnimations:@"imageView2Animation" context:(__bridge voidvoid *)(self.imageView2)];   [UIView setAnimationDuration:3.0f];   [UIView setAnimationDelay:paramDelay];   [UIView setAnimationDelegate:self];   [UIView setAnimationDidStopSelector:@selector(imageViewDidStop:finished:context:)];   [self.imageView2 setFrame:CGRectMake(0.0f, 0.0f, 100.0f, 100.0f)];   [self.imageView2 setAlpha:0.0f];   [UIView commitAnimations]; }   //imageView1 AffineTransformScale animation -(void)affineTransformScaleAnimation{   self.imageView1.center = self.view.center;   self.imageView1.transform = CGAffineTransformIdentity;   [UIView beginAnimations:nil context:NULL];   [UIView setAnimationDuration:5.0f];   self.imageView1.transform = CGAffineTransformMakeScale(2.0f, 2.0f);   [self.imageView1 setAlpha:0.0f];   [UIView commitAnimations]; }  //imageView2 AffineTransformRotate animation -(void)affineTransformRotateAnimation{   self.imageView2.center = self.view.center;   [UIView beginAnimations:@"clockwiseAnimation" context:NULL];   [UIView setAnimationDuration:5.0f];   [UIView setAnimationDelegate:self];   [UIView setAnimationDidStopSelector:@selector(clockwiseRotationStopped:finished:context:)];   self.imageView2.transform = CGAffineTransformMakeRotation(90.0f*M_PI/180.f);   [UIView commitAnimations]; }   -(void)clockwiseRotationStopped:(NSString*)paramAnimationID finished:(NSNumber*)paramFinished context:(void*)paramContext{   [UIView beginAnimations:@"counterclockwiseAnimation" context:NULL];   [UIView setAnimationDuration:5.0f];   self.imageView2.transform = CGAffineTransformIdentity;   [UIView commitAnimations]; }  @end 

以上就是關于IOS動畫開發的實例,本站對于IOS 開發還有很多教程,大家可以搜索查閱!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 明溪县| 神农架林区| 育儿| 兴业县| 灵台县| 安多县| 新郑市| 庆阳市| 宁河县| 资兴市| 大竹县| 广西| 平定县| 墨脱县| 阿瓦提县| 红桥区| 松江区| 定襄县| 肃南| 永川市| 鸡东县| 嘉黎县| 永吉县| 海口市| 福海县| 镇平县| 那曲县| 定边县| 综艺| 威海市| 邓州市| 五大连池市| 宜兰县| 岗巴县| 常山县| 荔波县| 玛曲县| 汶川县| 海南省| 城市| 马龙县|