objective-ccocoaosx-lionabout-box

Changing the size of a standard About panel


In my app I display a standard About window using the method orderFrontStandardAboutPanel:of NSApplication.

The panel thus presented has a size of 285x335 pixels. Is there a way to make it bigger?

Thank you.


Solution

  • You should probably read this article and this technote.

    You'll want to pay attention to the custom NSView section in the technote because you can't just specify as size for the standard window. At the end of the day, probably the simplest thing is to just treat it like opening any other window and implement the behavior yourself.