我有 81 个按钮。我想做的是,每个按钮都必须离开屏幕,而不是有非时,它们必须回来。
例如:
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);
}
}