iOS 动画执行完停在结束位置

来源:互联网 发布:photoshop mac安装包 编辑:程序博客网 时间:2024/05/16 23:42
CABasicAnimation *ani = [CABasicAnimation animationWithKeyPath:@"position"];//同时设置这两行代码可以让控件停在结束位置    ani.removedOnCompletion = NO;    ani.fillMode=kCAFillModeForwards;