I am trying to automatically load an image full screen after the application is launched but it looks just a little bit funky. The outside edge of the image view can be seen - how do I eliminate that? My code looks like this:
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
NSImage *imageFromBundle = [NSImage imageNamed:@"Screen.png"];
[image setImage:imageFromBundle];
[image enterFullScreenMode:[window screen] withOptions:nil];
}
Here is the Image: