I'm working on a Cocoa Mac app where I need to display a window/view on a secondary monitor, full-screen. I know how to create a window that could be dragged onto the secondary monitor, but I was wanting to programatically create the window and make it full screen on the external monitor. Thanks for the help.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
First, determine which screen you want to use by iterating over [NSScreen screens]. Create a full screen window with:
You might want to google CGDisplayCapture() as well. |
|||
|
|
You can call the Read here and here for the options that can be supplied to this method. You can use |
|||
|