为此,我在水平位置为 UIImageview 设置动画我使用了以下代码我使用了 NSTimer
timer = [NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(onTimer) userInfo:nil repeats:YES];
-(void)onTimer
{
[UIView animateWithDuration:10.0f animations:^{
//Moving_Cloud is an image view
Moving_Cloud.frame = CGRectMake(200.0f, 150.0f, Moving_Cloud.frame.size.width, Moving_Cloud.frame.size.height);
}];
}
现在我面临的问题是我需要在动画持续时间后获取“Moving_Cloud”的坐标
请帮助我
提前谢谢。