我想在连接开始的时候轮换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];