0
我是iPhone新手,我正在使用folling代碼來動畫我的UIButton,它的動畫效果非常完美,但是當我點擊按鈕的動作沒有觸發時。請幫我解決這個問題。如何在兩點之間連續彈跳uibutton
[UIButton animateWithDuration:3.0
delay:0.0f
options: UIViewAnimationOptionRepeat | UIViewAnimationOptionAutoreverse | UIViewAnimationOptionBeginFromCurrentState
animations: ^(void){
CGPoint p = Mybutton.center;
p.y += 100;
Mybutton.center = p;
}
completion:NULL];
這不顯示我們如何創建按鈕... – RyanR