iOS点击按钮第二次不能旋转View
原因:
用CGAffineTransformMakeRotation,每次旋转都要在之前最后的角度基础之上再转才有效果。
- (void)clickAction: (UIButton *)button { NSLog(@"点击"); if (!button.selected) { button.transform = CGAffineTransformMakeRotation(M_PI); } else { button.transform = CGAffineTransformIdentity; } button.selected = !button.selected; }