私はココアアプリケーションの初心者です。
アプリケーションの設定ウィンドウをプログラムで開きたい
グーグルで、私はちょうど見つけることができます --> [[NSWorkspace sharedWorkspace] openFile:@"MyApp.prefPane"];"
どんな助けでも大歓迎です.---
ありがとう。
私はココアアプリケーションの初心者です。
アプリケーションの設定ウィンドウをプログラムで開きたい
グーグルで、私はちょうど見つけることができます --> [[NSWorkspace sharedWorkspace] openFile:@"MyApp.prefPane"];"
どんな助けでも大歓迎です.---
ありがとう。
アプリ内の他のウィンドウと同じように、設定ウィンドウを開きます。
アプリ デリゲート クラス:
- (IBAction)showPreferencePanel:(id)sender {
if (!_preferenceController)
_preferenceController = [[PreferenceController alloc] init];
[_preferenceController showWindow:self];
}
どこPreferenceController
にある:
@interface PreferenceController : NSWindowController <NSWindowDelegate, NSToolbarDelegate, FontChooserViewDelegate>
...
@end
MainMenu.xib
メソッドは次のshowPreferencePanel
ようにフックされます。