0

In an application such as the native email client on macOS, there is an “about” menu item under the “Mail” menu up in the top bar. How do I add items to the window that pops up that gives copyright info on the application? I know how to edit the copyright line and version, but how do I add an text that gives information about this project to this pop up?

I can’t find much online for this and I have tried messing with the Custom macOS Application Target Properties quite a bit and I still can’t find how to get it to do what I want.

Here is the panel that I am talking about that I want to add text to

plastik_cards
  • 63
  • 2
  • 6

1 Answers1

2

Apple does not make finding this sort of basic information easy, in this case start with the documentation for NSApplication, which is the default main class for a Mac Cocoa app. Under the section "Managing Windows, Panels, and Menus" you'll see one of the entries mentions the "About panel", follow the link...

As you descend into the rabbit hole you will find functions for displaying the About box and details of options which effect its display, go all the way down to the detailed description of the individual option keys and there you will discover the details of how Cocoa finds the bits to make up the About box.

HTH

CRD
  • 52,522
  • 5
  • 70
  • 86
  • 5
    Thanks for that, it gave me the start to be able to find how to do it. For anyone looking to add copyright information for images etc into your application, all you need to do is add a "Credits" RTF file from inside xCode (File -> New -> File), which can be found under the "Resources" section in the file type selection. – plastik_cards Oct 03 '18 at 07:16