iPad симулятор и внешний экран

У меня есть приложение, которое я хочу показать на внешнем экране.

Проблема в том, что, когда я захожу в Hardware -> External display и выбираю один из них - события не запускаются. Зачем?

Это также не вводится:

if ([[UIScreen screens] count] > 1)

Поэтому я добавил следующий код:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
     //SOME CODE ...
     [self checkForExistingScreenAndInitializeIfPresent];
     [self setUpScreenConnectionNotificationHandlers];
     return YES:
}

- (void)checkForExistingScreenAndInitializeIfPresent
{
if ([[UIScreen screens] count] > 1)
{
    // Get the screen object that represents the external display.
    UIScreen *secondScreen = [[UIScreen screens] objectAtIndex:1];
    // Get the screen's bounds so that you can create a window of the correct size.
    CGRect screenBounds = secondScreen.bounds;

    self.secondWindow = [[UIWindow alloc] initWithFrame:screenBounds];
    self.secondWindow.screen = secondScreen;

    self.externalWindow=[[ExternalDisplayViewController alloc]initWithNibName:@"ExternalDisplayViewController" bundle:nil];
    self.externalWindow.view.frame=screenBounds;

    self.secondWindow.rootViewController=self.externalWindow;
    // Set up initial content to display...
    // Show the window.
    self.secondWindow.hidden = NO;
    }
}

- (void)setUpScreenConnectionNotificationHandlers
{
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];

[center addObserver:self selector:@selector(handleScreenDidConnectNotification:)
               name:UIScreenDidConnectNotification object:nil];
[center addObserver:self selector:@selector(handleScreenDidDisconnectNotification:)
               name:UIScreenDidDisconnectNotification object:nil];
}

Сложение:

Просто попытался добавить код в ViewDidLoad

Добавил это:

// Check for external screen.
if ([[UIScreen screens] count] > 1)
{

}
else {
}

Иметь открытый внешний дисплей и симулятор - не входит в блок IF

4 ответа

Решение

Проблема была в бета-версиях ОС и XCode. Понижение обратно к Maverics - и все работает как шарм

Вот мой полный код в моем UIViewController подкласс. Я проверил его с помощью симулятора 7.1, и он работает для меня (я запускаю приложение, а затем инициализирую внешний дисплей, как только он уже запущен):

- (void)viewDidLoad {
    // Other viewDidLoad code…
    // Check and initialize big screen
    [self checkForExistingScreenAndInitializeIfPresent]; 
}

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    // Register for second screen notifications
    NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
    [center addObserver:self selector:@selector(handleScreenDidConnectNotification:)
               name:UIScreenDidConnectNotification object:nil];
    [center addObserver:self selector:@selector(handleScreenDidDisconnectNotification:)
               name:UIScreenDidDisconnectNotification object:nil];
}

- (void)handleScreenDidConnectNotification:(NSNotification *)notification {
    [self checkForExistingScreenAndInitializeIfPresent];
}

- (void)handleScreenDidDisconnectNotification:(NSNotification *)notification {
    [self checkForExistingScreenAndInitializeIfPresent];
}

- (void)checkForExistingScreenAndInitializeIfPresent {
    if ([[UIScreen screens] count] > 1) {
        // Get the screen object that represents the external display.
        UIScreen *secondScreen = [[UIScreen screens] objectAtIndex:1];
        secondScreen.currentMode = secondScreen.preferredMode;
        secondScreen.overscanCompensation = 3;
        // Get the screen's bounds so that you can create a window of the correct size.
        CGRect screenBounds = CGRectMake(secondScreen.bounds.origin.x,
                                         secondScreen.bounds.origin.y,
                                         secondScreen.currentMode.size.width,
                                         secondScreen.currentMode.size.height);

        UIWindow *secondWindow = [[UIWindow alloc] initWithFrame:screenBounds];
        secondWindow.screen = secondScreen;
        // Setup external VC
        [ExternalScreenViewController sharedExternalScreen].window = secondWindow;
        // Set VC for second window
        secondWindow.rootViewController = [ExternalScreenViewController sharedExternalScreen];
        // Show the window.
        secondWindow.hidden = NO;
    } else {
        // What to do if disconnected
    }
} 

Это должно работать с небольшими изменениями.

Это сводило меня с ума. Я на версии 10.0 (10A255), и она не работала. Причина, по которой я смотрел на приложение:didFinishLaunchingWithOptions: для UIScreen.screens.count > 1

Это всегда будет 1

Вместо этого попробуйте это

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
   let center = NotificationCenter.default
   center.addObserver(self, selector: #selector(didConnect(notification:)), name: UIScreen.didConnectNotification, object: nil)
   return true
}

@objc func didConnect(notification: Notification) {
    if UIScreen.screens.count > 1 {
        if let screen = UIScreen.screens.last {
            let window = UIWindow(frame: screen.bounds)
            window.screen = screen

            let vc = UIViewController(nibName: nil, bundle: nil)
            vc.view.backgroundColor = .red

            window.isHidden = false
            window.rootViewController = vc
            self.secondWindow = window // Will not show unless window variable is retained.
        }
    }
}

Проблема может быть с инициализацией ExternalDisplayViewController:

self.externalWindow=[[ExternalDisplayViewController alloc]initWithNibName:@"ExternalDisplayViewController" bundle:nil];

Попробуй это:

[[ExternalDisplayViewController alloc]initWithNibName:@"ExternalDisplayViewController" bundle:nil];
 UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    self.externalWindow= = [storyboard instantiateViewControllerWithIdentifier:@"ExternalDisplayView"];

а также, вам нужно переопределить это handleScreenDidConnectNotification

-(void)handleScreenDidConnectNotification : (NSNotification *)aNotification{
    UIScreen *newScreen = [aNotification object];
    CGRect screenBounds = newScreen.bounds;
    self.alertForNotifyDisplay =  [[UIAlertView alloc] initWithTitle:@"External Display Connected." message:Nil delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
    [self.alertForNotifyDisplay show];

    if (!self.extWindow) {
        self.extWindow  = [[UIWindow alloc] initWithFrame:screenBounds];
        self.extWindow.screen = newScreen;

        [self checkForExistingScreenAndInitializeIfPresent];
    }

}
Другие вопросы по тегам