I Just started to develop an app for Mac OSX and I need to make a window which contains another child windows like this:
In VB.NET is called MDI Window (Multiple Document Interface) and in Java is called JFrame if I'm not wrong, I need its equivalent in cocoa
thanks in advance for the support
MDIs are not supported by Cocoa on the Mac. While some applications, such as many Java apps, do have them on the Mac, bringing them to the Mac breaks a lot of behaviors that Mac users are used to:
There may be other things that MDI's negatively affect as well.
I strongly suggest reading the OS X Human Interface Guidelines (or 'HIG' for short) to familiarize yourself with Mac UI fundamentals.
Mac users are picky about UIs and while they may not go out of their way to thank you for understanding Mac UI fundamentals, they will mob you with negative reviews for releasing something that feels less than a "true" Mac app.
Learn and design to the native UI language, it will be well worth it and you'll spend far less time fighting the OS and Cocoa.