私は鎖として動かなければならない複数のアニメーションを持っています。 これを処理してきた方法は、completionHandlerを使用して次のアニメーションブロックを実行することです。 これに対処するクリーナーの方法はありますか?iOS - 複数のアニメーションブロック?
[UIView animateWithDuration:1 animations^{
// perform first animation
}completion:(BOOL finished){
[UIView animateWithDuration:1 animations^{
// perform second animation
}completion:(BOOL finished){
}];
}];
ブロックを使用すると、きれいな結果が得られます。参照:http://xibxor.com/objective-c/uiview-animation-without-nested-hell/ –