문제

I'm having an issue with animating a UIButton into a new position.

The code I'm using is as follows:

[UIView animateWithDuration:kFadeAnimationInterval
                 animations:^{
                     button.frame = newFrame;
                 }];

Executing the code does not have any effect on the button's position. Not sure if it's related, but the Interface is laid out in a NIB file.

Any suggestions?

도움이 되었습니까?

해결책

Are you using AutoLayout to position the button? That might be the causing issues with changing the position in your animation.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top