29

我试图找到在屏幕上动画的 iPhone ImageView 的当前位置。

我像这样创建和动画 imageView

-(IBAction)button:(UIButton *)sender{
    UIImageView *myImageView =[[UIImageView alloc] initWithImage:
                                     [UIImage imageNamed:@"ball.png"]];    
    myImageView.frame = CGRectMake(0, self.view.frame.size.height/2, 40, 40);    
    [self.view addSubview:myImageView];
    [myArray addObject:myImageView];

    [UIView animateWithDuration:.5 
                          delay:0 
                options:(UIViewAnimationOptionAllowUserInteraction) // | something here?)
                     animations:^{
                         myImageView.frame = CGRectOffset(myImageView.frame, 500, 0);    
                     }
                     completion:^(BOOL finished){
                         [myArray removeObject:myImageView];
                         [myImageView removeFromSuperview];
                         [myImageView release];
                     }
     ];
}

然后为了检测 imageView 的当前 CGPoint 我每 60 秒调用一次这个方法

-(void)findPoint{

    for (UIImageView *projectile in bullets) {        
         label.text = [NSString stringWithFormat:@"%f", projectile.center.x];
         label2.text = [NSString stringWithFormat:@"%f", projectile.center.y];
    }
}

然而,这只给了我动画结束的点,我想获得在屏幕上动画的图像的当前 CGPoint。除了 UIViewAnimationOptionAllowUserInteraction 之外,我是否需要应用其他选项来执行此操作?如果没有,我如何获得动画 imageView 的当前位置?

4

2 回答 2

53

您可以使用presentationLayer - CALayer 的一个属性,“提供与当前正在显示的图层版本的近似值”。像这样使用它:

CGRect projectileFrame = [[projectile.layer presentationLayer] frame];
于 2011-10-02T08:30:29.877 回答
2

Swift 5:在动画期间获取临时位置和大小(CGRect):

let currentFrame = projectileFrame.layer.presentation()!.frame
于 2019-11-02T10:58:50.587 回答