问题描述
- animateWithDuration影响其他CGRectMake
-
应用中CGRectMake
用来图片变换位置;image.frane=CGRectMake( x,y,w,h);
然后我想让ViewController的一个label到另一个位置
CGPoint newCenter = CGPointMake(x,y); [UIView animateWithDuration: 1.0 delay: 0 options: 0 animations:^{label.center = newCenter ; label.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.2, 0.2);} completion:^(BOOL finished) { label.transform = CGAffineTransformMakeScale(1.0, 1.0); label.alpha = 0; } ];
当使用
animateWithDuration
的时候,图片不移动,label移动过。如果注释掉animation
,图片又移动了。不知道哪里出错了?
解决方案
可以参考下面的使用方法:
http://blog.csdn.net/nerohoop/article/details/7245909
时间: 2025-01-21 16:35:51