在我的 cocoa OS X 应用程序中,我有一个带有 xib 文件的WindowController和两个 带有 xib 文件的ViewController,我在 WindowController 中添加了一个自定义视图,我通过在单击时删除和添加这些视图来交换这两个子视图继续或下一步按钮。
[[theViewController view] removeFromSuperview];
self.theViewController = [[WelcomeInstallViewController alloc] initWithNibName:newView bundle:nil];
[innerInstallerView addSubview:[theViewController view]];
[[theViewController view] setFrame:[innerInstallerView bounds]];
现在在其中一个视图中,我有一个按钮需要禁用 WindowController 中的继续按钮。我已经查看了NSNotificationCenter,这是我的第一个 mac、cocoa、objective c 应用程序。我应该使用 NSNotificationCenter 吗?我很困惑,没有正确理解。