Вопрос

I was wondering if it would be possible to have a button inside of my mac app and when you click on it, it will open the About (App Name) window?

Hope it makes sense! :)

Это было полезно?

Решение

Connect the NSButton to File's Owner and select orderFrontStandardAboutPanel: like this:

enter image description here

EDIT

Alternatively connect the NSButton directly to the following IBAction:

- (IBAction)theButton:(id)sender {

    [NSApp orderFrontStandardAboutPanel:self];

 }
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top