0

CGRectMake画像を別の位置にジャンプするために使用される があります

image.frane=CGRectMake( x,y,w,h);

Label次に、 (同じViewController)を別の位置に変換してスケーリングしたかった

CGPoint newCenter = CGPointMake(x,y);
[UIView animateWithDuration: 1.0
    delay: 0
    options: 0
    animations:^{label.center = newCenter ; label.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.2, 0.2);}
                     completion:^(BOOL finished) {
                         label.transform = CGAffineTransformMakeScale(1.0, 1.0);
                         label.alpha = 0;
    }
];

私が抱えている問題はanimateWithDuration、画像を使用すると動かないのに動かないことLabelです。アニメーションをコメントアウトすると、画像が再び動きます。私は何か間違ったことをしていますか?

4

1 に答える 1

0

この以下のコードを試してください...

[UIView animateWithDuration:1.0f animations:^{
    imageView.frame = CGRectMake(newCenter.x, newCenter.y, imageView.frame.size.width, imageView.frame.size.height);
}];

また、この次のコードを使用して移動することもできます...キーボードが表示さUIImageViewれたときにスクロールするためにこのコードを使用UIScrollViewします..要件に合わせてコードを追加します..

UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0f];
imageView.frame = CGRectMake(newCenter.x, newCenter.y, imageView.frame.size.width, imageView.frame.size.height);
[UIView commitAnimations];

これがお役に立てば幸いです...

于 2013-01-10T10:49:18.520 に答える