在我的可可OS X應用程序,我有一個WindowController與廈門國際銀行文件,兩個ViewControllers與廈門國際銀行的文件,我在WindowController,凡添加了一個自定義視圖我通過在繼續或下一個按鈕中單擊時刪除和添加這些視圖來交換這兩個子視圖。訪問windowController的按鈕從子視圖
[[theViewController view] removeFromSuperview];
self.theViewController = [[WelcomeInstallViewController alloc] initWithNibName:newView bundle:nil];
[innerInstallerView addSubview:[theViewController view]];
[[theViewController view] setFrame:[innerInstallerView bounds]];
現在這些意見我有一個按鈕,需要關閉在WindowController.I繼續按鈕都看着NSNotificationCenter,這是我的第一臺Mac,可可,Objective C的應用程序。我應該使用NSNotificationCenter嗎?我很困惑,並沒有正確理解。
但操作(按鈕觸發)必須來自其中一個子視圖,然後它將禁用windowController中的按鈕。 –