Skip to content

Instantly share code, notes, and snippets.

@samilamti
Created October 22, 2012 08:01
Show Gist options
  • Save samilamti/3930232 to your computer and use it in GitHub Desktop.
Save samilamti/3930232 to your computer and use it in GitHub Desktop.
Listening to connecting screens
NSNotificationCenter.DefaultCenter.AddObserver (UIScreen.DidConnectNotification, notification => {
UIScreen connectedScreen = (UIScreen)notification.Object;
CreateRemoteWindow(connectedScreen);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment