我有以下代码:
NSString *yValue;
yValue=[[NSString alloc] initWithFormat:@"%1.2f" , imageView.center.y];
CGRect labelFrame = CGRectMake( 10, 100, 200, 50 );
UILabel* label5 = [[UILabel alloc] initWithFrame: labelFrame];
[label5 setBackgroundColor:[UIColor blackColor]];
[label5 setText: yValue];
[label5 setTextColor: [UIColor orangeColor]];
[self.view addSubview: label5];
这正确显示了UIimageView的y值,但问题是它只显示结束y值。
当一个人轻弹UIImageView时,我会使用:
为其设置动画 [UIView animateWithDuration:2 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{ recognizer.view.center = finalPoint; }
我想要的是label5在动画期间显示imageView的y值,而不仅仅是之后。有可能这样做吗?