Search Results

0
votes

Rich GUI OS X Frameworks?

To put it a different way than previous posters: if you are not designing your interface in InterfaceBuilder and manipulating it with Objective-C, then you are going to end up with an application t …
1
vote

Put a process in a sandbox where it can do least harm

FreeBSD has specific concepts of jails, and Solaris has …
4
votes

How do I get the resolution of the main monitor in Mac OS X in C++?

Using CoreGraphics: CGRect mainMonitor = CGDisplayBounds(CGMainDisplayID()); CGFloat monitorHeight = CGRectGetHeight(mainMonitor); CGFloat monitorWidth = CGRectGetWidth(mainMonitor) …