我有一个自定义UITableViewCell,其中包含图片和一些文本。进入编辑模式时,我希望图像淡出并向左移出屏幕外。什么时候以及如何实现此代码?我尝试将动画块放入willTransitionToState中:但是图像只是跳到屏幕外,没有动画。
最佳答案
覆盖setEditing:animated:
可以执行此类操作。如果animated
是NO
,请确保不设置动画。像这样:
if( animated ) {
[UIView beginAnimations:@"EnterEditingMode" context:NULL];
// Set up duration, etc here
}
if( editing ) {
// do animation
} else {
// reverse animation
}
if( animated ) {
[UIView commitAnimations];
}