Skip to content

Instantly share code, notes, and snippets.

@rentzsch
Created September 14, 2011 01:39
Show Gist options
  • Save rentzsch/1215654 to your computer and use it in GitHub Desktop.
Save rentzsch/1215654 to your computer and use it in GitHub Desktop.
@implementation NSScreenMainScreenSpikeAppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
[NSTimer scheduledTimerWithTimeInterval:1.0
target:self
selector:@selector(pollScreen:)
userInfo:nil
repeats:YES];
}
- (void)pollScreen:(NSTimer*)timer_ {
NSLog(@"%@", [[[NSScreen mainScreen] deviceDescription] description]);
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment