第二个UIScreen导致UIStoryboards出现问题

时间:2013-10-17 16:33:51

标签: ios7 uistoryboard multiple-monitors uiscreen

在我的app委托中,我设置了另一个屏幕(用于airPlay)。

当我创建第二个窗口并为其分配第二个屏幕并运行应用程序时,我的故事板中的TableView变为黑色。就像tableView没有正确呈现一样。我已将问题隔离到:

self.HDTVwindow.screen = [[UIScreen screens] objectAtIndex:1];

HDTVWindow是我的airplay应用程序的第二个窗口。当我注释掉这段代码时,故事板运行良好,我的UITableView很漂亮。我是否在appDelegate中制作了两个UIWindows来混淆故事板,即使它们被分配到不同的屏幕?

我的appDelegate见下文。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    if ([[UIScreen screens] count]>1)
        {
            CGRect frame = [[UIScreen screens]objectAtIndex:1].bounds;
            self.HDTVwindow = [[UIWindow alloc] initWithFrame:frame];

            UIImage* astonLogo=[UIImage imageNamed:@"AstonUni720p.png"];
            UIImageView* astonLogoView=[[UIImageView alloc] initWithImage:astonLogo];
            astonLogoView.frame=frame;
            [self.HDTVwindow addSubview:astonLogoView];

            self.HDTVwindow.hidden = NO;
            self.HDTVwindow.screen=[[UIScreen screens] objectAtIndex:1];//PROBLEM!!

        }

// Set Up Storyboard
   UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
   UIViewController *mainViewController = [storyboard    instantiateInitialViewController]; 
   self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
   self.window.rootViewController = mainViewController;
   [self.window makeKeyAndVisible];

 return YES;

}

1 个答案:

答案 0 :(得分:0)

使用iPad和Apple TV运行时问题消失,似乎模拟器中可能存在错误。将来我总是在真正的ios设备上运行我的代码。