NSViewController 或 NSWindowController 来管理笔尖
就良好实践和资源使用(内存等)而言,如果任一方法满足我的要求,那么使用 NSViewController 或 NSWindowController 哪种方法是更好的方法。从另一个笔尖打开另一个笔尖。我可以使用任何一个来完成。唯一的区别是实例化语法和调用语法如下(initWithNibName 与 initWithWindowNibName 和 [nib view] 与 [nib showWindow:sender])
有什么意见吗?
As far as good practices and resource usages (memory, etc.), Which is preferable method to use NSViewController or NSWindowController if either method satisfied what I try to do. Opening another nib from another nib. I can accomplish using either one. The only differences are the instantiating syntax and calling syntax as below (initWithNibName vs. initWithWindowNibName and [nib view] vs [nib showWindow:sender])
Any comments?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
顾名思义,它们有不同的用途。如果要加载窗口,请使用
NSWindowController
,如果要加载视图,请使用NSViewController
。As the names imply, they serve different purposes. If you want to load a window, use
NSWindowController
, if you load a view, useNSViewController
.