IBOutletを持つカスタムUIWindowクラスがあります
@interface MyWindow
IBOutlet UIView * someView;
id <MyWindowDelegate> delegate;
// to inform a controller something happened to view
@end
@interface MyControllerThatContainsSomeView
IBOutlet UIWebView * theConcreteView;
@end
MainWindow.xibのウィンドウをMyWindowに変更しました。MyControllerThatContainsSomeView.xibからsomeViewを参照できるインターフェイスビルダーを介した方法はありますか?
したがって、MainWindow.MyWindow.someView-> MyControllerThatContainsSomeView.theConcreteView