Skip to content

Instantly share code, notes, and snippets.

@ljanzik
Created January 28, 2013 08:04
Show Gist options
  • Save ljanzik/4653793 to your computer and use it in GitHub Desktop.
Save ljanzik/4653793 to your computer and use it in GitHub Desktop.
iOS :: External Screen Notifications
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(screenDidConnect:)
name:UIScreenDidConnectNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(screenDidConnect:)
name:UIScreenDidDisconnectNotification
object:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment