我正在开发小应用程序,我是osx编程的新手,我已经搜索了所有但我没有找到如何显示关于窗口的自定义。
在我的应用程序中,我有3个控制器,一个用于登录,然后我切换到其他,但第三个是关于但我不知道如何更改当有人点击关于菜单,我已经知道orderfrontstandardaboutpanel
打电话,但我将如何使用它来显示我的观点?这是我的
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
_accountDetails = [[NSDictionary alloc] init];
self.loginViewController = [[MTLoginViewController alloc] initWithNibName:@"MTLoginViewController" bundle:nil];
self.loginViewController.delegate = self;
// 2. Add the view controller to the Window's content view
[self.window.contentView addSubview:self.loginViewController.view];
// [self setUIWindowsFrame:self.loginViewController.view.frame];
self.loginViewController.view.frame = ((NSView*)self.window.contentView).bounds;
}