سؤال

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

هل كانت مفيدة؟

المحلول

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

alertView.transform = CGAffineTransformRotate(alertView.transform, degreesToRadian(90));
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top