I'm using OS X Lion, using C++. I've set the dialect to C++11, and the standard library to libc++. In Visual C++, I've heard about the windows.h library and the operations that can be performed with it (such as popping up windows), and was wondering if there were any similar libraries for Mac, and where I can learn about them. I have searched quite a bit, but to no avail.
Asked
Active
Viewed 1,148 times
2 Answers
4
You're probably looking either at Carbon (which is now obsolete) or Cocoa, which is a modern Objective-C API. You're best off using a combination of C++ and Objective-C to make a graphical app for OS X so you can use the Cocoa library.
Take a look at this related question for more information.
0
You can use Cocoa Objective-C api or you can use cross-platform c++ solutions, such as Qt
or wxWidgets

Andrew
- 24,218
- 13
- 61
- 90