我想用动画更改Button的位置,但动画按钮必须是可点击的。
我该怎么做?
我尝试了一些解决方案,但我还没有取得任何成功。
[UIButton beginAnimations:nil context:nil];
[UIButton setAnimationDuration:1.0];
[UIButton setAnimationBeginsFromCurrentState:YES];
mybutton.transform = CGAffineTransformMakeTranslation(-10, 0);
// I also tried this:
// mybutton.frame = CGRectMake(300, 209, 57, 34);
[UIButton commitAnimations];
请帮助
非常感谢提前
答案 0 :(得分:0)
尝试这种方式,我希望它能起作用。
myButton.center = CGPointMake(160,300);