羊羊羊羊 2013-04-22 02:07 采纳率: 0%
浏览 1017

将应用迁移到iphone5 retina4中

以前用同样的方法成功迁移过应用,但是这个应用不知道为什么不行。

迁移步骤相同,但是现在得不到xib布局来设置窗口自动调整大小,因为TabBarViewController 定义为根控制器,并且应用的顶置状态条和前段都变成黑色的了。

- (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];
  • 写回答

1条回答 默认 最新

  • ChatGPTᴼᴾᴱᴺᴬᴵ 2022-12-21 15:55
    关注

    ChatGPT尝试为您解答,仅供参考
    您好!看起来您的应用的启动流程没有问题。但是,可能是因为您在加载 tabBarController 时未提供任何视图控制器,所以它没有显示任何内容。您需要在加载视图控制器的数组中提供至少一个视图控制器。

    例如:

    NSArray *viewControllers = [NSArray arrayWithObjects: firstViewController, secondViewController, nil];
    [self.tabBarController setViewControllers:viewControllers animated:NO];
    

    您也可以通过设置每个视图控制器的标题和图标来定义每个选项卡,例如:

    firstViewController.title = @"First";
    firstViewController.tabBarItem.image = [UIImage imageNamed:@"first_icon"];
    
    secondViewController.title = @"Second";
    secondViewController.tabBarItem.image = [UIImage imageNamed:@"second_icon"];
    
    评论

报告相同问题?

悬赏问题

  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作