在這裏我的應用程序中使用了移動子視圖。如果它達到y = 150,我想在跳躍效果中做一個按鈕,我試過這個鏈接adding bounce effect to appearance of UIImageView它在水平方向工作,我想要一個垂直方向,這裏我的代碼,對uibuttons的跳躍效果
-(void)godown
{
if (movingview.center.y < 150) movingview.center = CGPointMake(movingview.center.x, movingview.center.y +5);
if(movingview.center.y ==150)
{
[UIView beginAnimations:@"bounce" context:nil];
[UIView setAnimationRepeatCount:3];
[UIView setAnimationRepeatAutoreverses:YES];
CGAffineTransform transform = CGAffineTransformMakeScale(1.3,1.3);
bt1.transform = transform;
bt2.transform=transform;
[UIView commitAnimations];
}
}
請幫我改成跳躍效果(垂直)?
你可以添加一些解釋你的答案?僅發佈代碼段不是一個好方法。參見[如何提問](http://stackoverflow.com/help/how-to-ask) –