gpt4 book ai didi

iphone - 无法将应用程序迁移到 iphone5 视网膜 4

转载 作者:行者123 更新时间:2023-11-29 11:00:22 28 4
gpt4 key购买 nike

我已经将一些应用程序迁移到 iPhone5,但我无法解决这个问题。我遵循相同的步骤,但现在我没有 xib 布局来设置窗口的自动调整大小,因为 TabBarViewController 以编程方式定义为 rootController。我总是遇到烦人的黑色前栏和顶部栏。

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

tabBarController = [[UITabBarController alloc] init];

NSArray *viewControllers = [NSArray alloc];

viewControllers = [NSArray arrayWithObjects: nil];

// Attach them to the tab bar controller
[self.tabBarController setViewControllers:viewControllers animated:NO];

// Put the tabBarController's view on the window.
[window addSubview:[self.tabBarController view]];

self.window.rootViewController = self.tabBarController;

[self.window makeKeyWindow];

self.splashController = [[splashViewController alloc] initWithNibName:@"splashViewController" bundle:nil aidioma:self.idioma];
[self.window addSubview:[splashController view]];
[self.window makeKeyAndVisible];

最佳答案

要启用 4 英寸显示器支持,您需要将一个名为 Default-568h@2x.png 的文件添加到项目的根目录。

很容易弄清楚,对吧? :)

关于iphone - 无法将应用程序迁移到 iphone5 视网膜 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16136586/

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