我想在animation动画结束之后再进行事件处理,现在是同时再进行 我应该怎么做啊
有一个接口的 可以在finished里面处理:如下
[UIView animateWithDuration:0.3 delay:0 options:UIViewAnimationOptionCurveLinear
animations:^{
settingView.center = CGPointMake(myView.center.x, myView.center.y+480.0);
}
completion:^(BOOL finished){
if (finished){
;
}
}
];
不是很明白你能说的具体一点吗
已经解决 谢谢了