iOS第二显示

时间:2012-08-28 23:29:12

标签: ios airplay uiscreen

我没有让第二个显示器显示任何其他显示器然后镜像我的设备屏幕。 我总是只看到电视上的镜像设备屏幕。 这是我的代码我希望有人可以帮助我。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];

[center addObserver:self selector:@selector(configureScreens) name:UIScreenDidConnectNotification object:nil];

[center addObserver:self selector:@selector(configureScreens) name:UIScreenDidDisconnectNotification object:nil];

[self configureScreens];

return YES;
}

-(void)configureScreens
{
NSUInteger screenCount = [[UIScreen screens] count];

NSLog(@"%u",screenCount);

if (screenCount == 1) {
    //single windows
}else if(screenCount == 2) {
    UIScreen *appleTvScreen = [[UIScreen screens] objectAtIndex:1];
    UIWindow *tvWindow = [[UIWindow alloc] initWithFrame:appleTvScreen.bounds];
    tvWindow.screen = appleTvScreen;
    tvWindow.backgroundColor = [UIColor redColor];

    tvWindow.rootViewController = [[UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil] instantiateViewControllerWithIdentifier:@"tv"];

    tvWindow.hidden = NO;
}
}

1 个答案:

答案 0 :(得分:1)

我建议您在GITHub上试用示例源代码TVOut - https://github.com/JohnGoodstadt/TVOut

它使用与您类似的代码,但打包在一个类中,您可以复制并从您自己的代码中调用。

它应该可以解决您的显示问题。