0
我想在連接開始時旋轉UIButton,並在連接停止時想要停止旋轉。從服務器下載數據時的旋轉按鈕
所以我的問題是如何啓動或停止UIButton旋轉。
我使用下面的代碼進行旋轉。
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:5.0];
// (180 * M_PI)/180 == M_PI, so just use M_PI
btn.transform = CGAffineTransformMakeRotation(M_PI);
[UIView commitAnimations];
感謝工作,但如何旋轉按鈕,直到下載完成,因爲它只旋轉一次 –
嗯感謝了很多 –