我動畫用於此目的的水平位置的的UIImageView的座標我用下面的代碼,我用的NSTimer獲得動畫的UIImageView
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」
請幫我
在此先感謝。
在動畫持續時間之後,幀是不是你設置的那個幀? – Jumhyn