我正在提交这个简单的动画,它会导致按钮缩小到 0 的宽度:
[UIView animateWithDuration:0.2
delay: 0.0
options: UIViewAnimationOptionCurveEaseIn
animations:^{
[btnActionButton setFrame:CGRectMake(160, 10, 0, 55)];
}
completion:^(BOOL finished){
}];
现在的问题是,一旦动画开始,按钮的titleLabel就会自动隐藏......我使用模拟器的slowAnimation模式确保它。
是否有可能在动画过程中标签也随着帧而缩小,因为如果按钮标题在开始时消失似乎很尴尬。
提前致谢。奥贝德