正在加載我的設備處於橫向模式。 我的父視圖控制器也處於lanscape模式 ,但我從nib文件加載的presentModelViewController:
處於potrait模式。當前模型視圖控制器方向?
[self performSelectorInBackground:@selector(loginIn) withObject:nil];
loadingAlert = [[LoadingAlert alloc] initWithNibName:@"LoadingAlert" bundle:nil];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:loadingAlert];
[navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
[navigationController.navigationBar setBarStyle:UIBarStyleBlack];
[navigationController.navigationBar setOpaque:NO];
[navigationController.navigationBar applyCustomColor];
UIWindow* keyWindow = [[UIApplication sharedApplication] keyWindow];
[self presentModalViewController:navigationController animated:NO];
它只發生在應用程序第一次運行時,而不是第一次工作正常。