我有一个滑动手势UITableViewCell
,当它发生一个按钮时,我想为该按钮添加动画,动画应该从左到右显示按钮。
我需要在以下代码中添加什么,以便按钮从左到右出现/淡入?
// set the original frame
button.frame = CGRectMake(30, 50, 100, 100);
// animate
[UIView animateWithDuration:0.75 animations:^{
button.frame = CGRectMake(10, 70, 100, 100);
}];