我想在IB中设计一个带有WebView的NSwindow来显示弹出链接。我需要能够实例化任意数量的这些。这可能吗?
答案 0 :(得分:3)
不确定。通常,您的窗口控制器将子类化为NSWindowController。
MyWindowController* controller = [[MyWindowController alloc] initWithWindowNibName:@"MyWindowView"];
[controller showWindow];
在你的笔尖中,将所有者设置为MyWindowController,然后根据需要连接你的插座。