gpt4 book ai didi

ios 9 objective-c 屏幕尺寸问题

转载 作者:可可西里 更新时间:2023-10-31 23:58:03 24 4
gpt4 key购买 nike

我升级到 ios 9 和 xcode 7(从 xcode 6.2),现在当我启动我的应用程序时会发生这种情况:

enter image description here

现在上下都有黑条了。

我的 appDelegate 是这样的:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

// Override point for customization after application launch.
// self.window.backgroundColor = [UIColor whiteColor];
// [self.window makeKeyAndVisible];



_startViewController = [[StartViewController alloc] init];
_startNavigationController = [[StartNavigationController alloc] initWithRootViewController:_startViewController];
self.window.rootViewController = _startNavigationController;
[self.window makeKeyAndVisible];

// Need to fix this since deprecated
// [application prefersStatusBarHidden:NO];
// [application preferredS :UIStatusBarStyleDefault];

// [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];

return YES;
}

最佳答案

案例在应用程序图标和启动图像下的常规设置中缺少 LaunchScreen.storyboard:

enter image description here

以上功能无效请按照以下步骤检查:

  1. 导航到项目设置
  2. 在“App Icons and Launch Images”下点击“Use Asset Catalog”
  3. 在出现的弹出窗口中选择“迁移”。

这应该可以解决问题。

enter image description here

关于ios 9 objective-c 屏幕尺寸问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32964581/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com