在iOS 7中显示UIAlertView时的旋转问题

Moh*_*fez 9 uialertview ios7

在iOS7中,很少但偶尔,当我在UIAlertView显示时旋转我的应用程序时,只有alertView和状态栏旋转,而不是我的应用程序.有没有其他人经历过这个和/或找到了解决方法?

小智 15

我通过向app delegate添加下一个方法解决了这个问题:

- (void)application:(UIApplication *)application willChangeStatusBarOrientation:(UIInterfaceOrientation)newStatusBarOrientation duration:(NSTimeInterval)duration  {
NSArray *windows = [application windows];
for (UIWindow *nextWindow in windows) {
    [[nextWindow.rootViewController class] attemptRotationToDeviceOrientation];
     }
}
Run Code Online (Sandbox Code Playgroud)