我有81個按鈕。我想要做的是每個按鈕都必須離開屏幕,而不是非屏幕按鈕,它們必須回來。循環中按鈕的動畫ios
例如:
1.
***
***
***
2.
**
***
***
3.
*
***
***
等一個
比他們必須回來:
1.
*
2.
**
3.
***
等一個
我[UIView的animateWithDuration]中環試但它一起動畫,不分割:
for(int i = 0 ; i < 9 ; i ++)
for(int j = 0 ; j < 9 ; j ++){
[uiview animateWithDuration:0.5f animations:^{
button.center = CGPointMake(self.view.frame.size.width, self.view.frame.size.height);
}
}
所有動畫在一起,不拆 – poppytop