0

重複の可能性:
アニメーション中に UIView フレームの原点とサイズを取得する方法

 -(void)anothertarget1
{


    UIImage *uranus=[UIImage imageNamed:@"red-ball1.png"];


    imagev=[[UIImageView alloc]initWithFrame:CGRectMake(5, 10, 100, 100)];
    imagev.alpha=0.6;
    imagev.image=uranus;

    [self.view addSubview:imagev];




    CGPoint goal = CGPointMake(self.view.center.x+70,self.view.center.y+24);

    CGPoint center=imagev.center;
    NSLog(@"center=%f",center);



    UIViewAnimationOptions opt = UIViewAnimationOptionAllowUserInteraction;
    [UIView animateWithDuration:20 delay:0 options:opt animations:^{
        //forimageview1;
        imagev.center = goal;


    } completion:^(BOOL f) {
        imagev.hidden=YES;

    }];

}

アニメーション中の現在位置を取得するオブジェクトを作りたいですUIImageview助けてください

4

1 に答える 1

0

displayrate を更新する CADisplayLink を使用してみてください。

于 2012-10-22T13:16:32.810 に答える