有人知道如何转换UIBarButtonItem吗?
我尝试了这个,但没有结果:(它不适用于UIBarButtonItem及其customview.
[UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:5.0f]; CGAffineTransform myTransform = CGAffineTransformMakeRotation(M_PI_2); UIBarButtonItem * currentItem = [self.toolbarItems objectAtIndex:4]; currentItem.customView.transform = myTransform; [UIView commitAnimations];
我确认转换适用于其他视图(我尝试使用self.view).
谢谢 !