动画位置改变时可点击按钮 - 如何?

时间:2011-02-07 17:28:08

标签: iphone xcode ios4

我想用动画更改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];

请帮助

非常感谢提前

1 个答案:

答案 0 :(得分:0)

尝试这种方式,我希望它能起作用。

myButton.center = CGPointMake(160,300);