Is it possible to show a UIAlertView rotated to the device's current orientation inside a UIViewController that always returns NO in shouldAutorotateToInterfaceOrientation: ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can rotate the view after showing it depending on the orientation of the device, using this:

alertView.transform = CGAffineTransformRotate(alertView.transform, degreesToRadian(90));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.