我是 iPhone 开发的新手,正在使用以下代码为我的 UIButton 设置动画,它的动画效果非常好,但是当我单击按钮时,动作没有触发。请帮我解决这个问题。
[UIButton animateWithDuration:3.0
delay:0.0f
options: UIViewAnimationOptionRepeat | UIViewAnimationOptionAutoreverse | UIViewAnimationOptionBeginFromCurrentState
animations: ^(void){
CGPoint p = Mybutton.center;
p.y += 100;
Mybutton.center = p;
}
completion:NULL];