亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

UIKit框架(3)UIView的動畫處理方式

發布時間:2020-08-06 06:56:08 來源:網絡 閱讀:349 作者:ymanmeng123 欄目:移動開發

可以將UIView對象的位置及尺寸變化處理成動畫效果


  • 基本的動畫處理方式

//標識動畫的開始位置
+ (void)beginAnimations:(NSString *)animationID context:(void *)context
//標識動畫的結束位置,并開始動畫
+ (void)commitAnimations
//設置動畫執行時間,單位為秒 
+ (void)setAnimationDuration:(NSTimeInterval)duration  
//動畫重復次數,默認為1
+ (void)setAnimationRepeatCount:(float)repeatCount

如:通過改變btn的大小使用動畫處理

CGRect frame = self.btn.frame;
frame.size.width *= 1.2;
frame.size.height *= 1.2;
[UIView beginAnimations:@"btn" context:nil];
[UIView setAnimationDuration:0.5];
self.btn.frame = frame;
[UIView commitAnimations];


  • block方式的動畫處理

+ (void)animateWithDuration:(NSTimeInterval)duration animations:(void (^)(void))animations
+ (void)animateWithDuration:(NSTimeInterval)duration animations:(void (^)(void))animations completion:(void (^)(BOOL finished))completion
+ (void)animateWithDuration:(NSTimeInterval)duration delay:(NSTimeInterval)delayoptions:(UIViewAnimationOptions)options animations:(void (^)(void))animationscompletion:(void (^)(BOOL finished))completion

如:

CGRect frame = self.btn.frame;
frame.size.width *= 1.2;
frame.size.height *= 1.2;
[UIView animateWithDuration:0.5 animations:^{
    self.btn.frame = frame;
}];


  • 動畫處理中使用形變屬性

動畫處理中使用形變屬性是一個非常好的做法

基于自身初始形變值進行形變:

//位置形變
CGAffineTransform CGAffineTransformMakeTranslation ( CGFloat tx, CGFloat ty );
//尺寸形變
CGAffineTransform CGAffineTransformMakeScale ( CGFloat sx, CGFloat sy ); 
//旋轉形變
CGAffineTransform CGAffineTransformMakeRotation ( CGFloat angle );

基于指定形變值進行形變:

//位置形變
CGAffineTransform CGAffineTransformTranslate ( CGAffineTransform t, CGFloat tx,CGFloat ty ); 
//尺寸形變
CGAffineTransform CGAffineTransformScale ( CGAffineTransform t, CGFloat sx,CGFloat sy );  
//旋轉形變
CGAffineTransform CGAffineTransformRotate ( CGAffineTransform t, CGFloat angle );

如:

CGAffineTransform transform = CGAffineTransformScale(self.btn.transform, 1.2, 1.2);
[UIView beginAnimations:@"btn" context:nil];
[UIView setAnimationDuration:0.5];
self.btn.transform = transform;
[UIView commitAnimations];


形變原始值常量:

const CGAffineTransform CGAffineTransformIdentity;



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

格尔木市| 武定县| 大冶市| 互助| 龙游县| 子长县| 洪湖市| 常熟市| 广丰县| 科技| 阳东县| 疏勒县| 滨海县| 五家渠市| 建昌县| 西峡县| 新龙县| 三原县| 抚顺市| 连江县| 盐边县| 桐梓县| 潼南县| 巴中市| 措美县| 平塘县| 永春县| 康保县| 固原市| 丰顺县| 峡江县| 尚义县| 聂拉木县| 河源市| 昆山市| 温宿县| 来凤县| 司法| 江都市| 镇安县| 大名县|