Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NSApplication orderFrontStandardAboutPanel: Making my about panel slightly less standard

What are my options, if any, of adding additional, arbitrary data to the standard Cocoa about dialog that is displayed by an NSApplication when it receives a orderFrontStandardAboutPanel message.

like image 503
anthony Avatar asked May 20 '10 21:05

anthony


1 Answers

If you add a file named Credits.rtf to Resources the contents will automatically be used in the expanded standard about panel and you can put whatever info you want in the file. It will still pull the standard copyright, version info, etc from the info.plist. It is the easiest way I know of to add arbitrary info, otherwise you pretty much will have to roll your own about panel.

like image 172
theMikeSwan Avatar answered Sep 20 '22 13:09

theMikeSwan