動畫效果提供了狀態或頁面轉換時流暢的使用者體驗,在ios系統中,咱們不需要自己編寫繪製動畫的**,core animation提供了豐富的api來實現你需要的動畫效果。
uikit只用uiview來展示動畫,動畫支援uiview下面的這些屬性改變:
1、commitanimations方式使用uiview動畫
下面是點選改變後的效果(兩種):
動畫的常量有一下四種
1.2 交換本檢視控制器中2個view位置
[self.view exchangesubviewatindex:1 withsubviewatindex:0];
先新增兩個view ,乙個redview 乙個yellowview
這樣看起來就像兩頁一樣了。
1.3 、[uiview setanimationdidstopselector:@selector(animationfinish:)];
在commitanimations訊息之前,可以設定動畫完成後的**,設定方法是:
[uiview setanimationdidstopselector:@selector(animationfinish:)];
2、使用:catransition
transition.type 的型別可以有
淡化、推擠、揭開、覆蓋
nsstring * const kcatransitionfade;
nsstring * const kcatransitionmovein;
nsstring * const kcatransitionpush;
nsstring * const kcatransitionreveal;
這四種,
transition.subtype
也有四種
nsstring * const kcatransitionfromright;
nsstring * const kcatransitionfromleft;
nsstring * const kcatransitionfromtop;
nsstring * const kcatransitionfrombottom;
2.2 私有的型別的動畫型別:
立方體、吸收、翻轉、波紋、翻頁、反翻頁、鏡頭開、鏡頭關。
下圖是第乙個cube立方體的效果:
2.3 catransition的 startprogress endprogress屬性3、uiview的 + (void)animatewithduration
:(nstimeinterval)duration animations:(void (^)(void))animations completion:(void (^)(bool finished))completion
方法。這個方法是在ios4.0之後才支援的。
比 1 裡的uiview的方法簡潔方便使用。
didview裡新增moveview。
然後用uiview animatewithduration動畫移動,移動動畫完畢後新增乙個label。
3.2、 animatewithduration的巢狀使用
這個巢狀的效果是先把view變成透明,在從透明變成不透明,重複2.5次透明到不透明的效果。
文中例子的**:animatedemo
iOS實現「下雨下雪」動畫效果和「烟花」動畫效果
一 效果展示 二 實現流程 func setupui self rainlayer caemitterlayer.init self imageview?layer.addsublayer self rainlayer 發射形狀 線性 self rainlayer emittershape caem...
iOS 動畫效果
最普通動畫 開始動畫 uiview beginanimations nil context nil 設定動畫持續時間 uiview setanimationduration 2 動畫的內容 frame.origin.x 150 img setframe frame 動畫結束 uiview commi...
iOS 動畫效果
最普通動畫 開始動畫 uiview beginanimations nil context nil 設定動畫持續時間 uiview setanimationduration 2 動畫的內容 frame.origin.x 150 img setframe frame 動畫結束 uiview commi...