在我的应用程序委托中,我设置了另一个屏幕(用于 airPlay)。
当我创建第二个窗口并将第二个屏幕分配给它并运行应用程序时,我的故事板中的 TableView 变为黑色。好像 tableView 没有正确渲染。我已将问题隔离到:
self.HDTVwindow.screen=[[UIScreen 屏幕] objectAtIndex:1];
其中 HDTVWindow 是我的播放应用程序的第二个窗口。当我注释掉这段代码时,情节提要运行良好,我的 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;
}