我正在应用程序中移动UILabel,我希望它在几帧内更改位置和大小,而不是跳转位置。我正在为iPhone使用Objective-c和可可粉开发。谁能帮我吗?
最佳答案
最简单的方法是:
CGRect endFrame = /*The frame of your label in end position*/
[UIView animateWithDuration:0.5 animations:^{
myLabel.frame = endFrame;
}];