Custom About window with Mac Catalyst

I wan´t to create a custom "About" window and connect it to the "About Application" Menu Item. How is this done with Mac Catalyst?

Insert two new files into your project: InfoPlist.strings and Credits.rtf.

InfoPlist.strings:

/* 
  InfoPlist.strings
  CPU8PRO
  Created by.
  Copyright © 2020 All rights reserved.
  • /

CFBundleGetInfoString = "v1.0, Copyright 2020, Entity.";
NSHumanReadableCopyright = "Copyright © 2020, Entity.";

Credits.rft:

The information you wish to display in the About box. Looks best when entered.




Custom About window with Mac Catalyst
 
 
Q