羊羊羊羊 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 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题