Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rotate UIBarButtonItem

I want to rotate a UIBarButtonItem.

I have been able to do this with UIButtons using setTransform:CGAffineTransformMakeRotation(…), but UIBarButtonItem does not have this property.

I know the Camera-app does this, so it should be achieveable.
How can I achieve this?

Thanks.

like image 849
Emil Avatar asked May 24 '26 12:05

Emil


1 Answers

Have you tried using a custom view inside the UIBarButtonItem that you then transform any way you want?

like image 170
nicktmro Avatar answered May 26 '26 01:05

nicktmro