从不同的笔尖添加 NSView

发布于 2024-09-05 14:56:24 字数 288 浏览 7 评论 0原文

当新视图位于不同的 xib 文件中时,如何添加子视图?

不同笔尖的类是 NSViewController,我正在使用 self = [super initWithNibName:@"NewView" bundle:nil]; 来加载笔尖

我可以做类似的事情

NewView *nv = [NewView new];
[oldView removeFromSuperView];
[mv addSubview:[nv theView]];

吗?必须做一些不同的事情

How can I add a subview when the new view is in a different xib file?

The class for the different nib is an NSViewController and I'm using self = [super initWithNibName:@"NewView" bundle:nil]; to load the nib

Can I just do something like:

NewView *nv = [NewView new];
[oldView removeFromSuperView];
[mv addSubview:[nv theView]];

or do I have to do something different

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半暖夏伤 2024-09-12 14:56:24

是的,这是正确的,只要 NewViewNSViewController 的子类。话虽如此,您不应该将控制器类命名为 NewView,因为它不是视图。您的 NSViewController 子类实际上应该命名为 NewViewController

您也可以这样做:

[[oldView superview] replaceSubview:oldView withView:nv];

当然,这假设您的 NewView nib 文件的文件所有者设置为您的 NSViewController 子类。

Yes, that's correct, providing NewView is a subclass of NSViewController. Having said that, you shouldn't name a controller class NewView, as it's not a view. Your subclass of NSViewController should really be named NewViewController.

You can also do this:

[[oldView superview] replaceSubview:oldView withView:nv];

Of course, this assumes that your NewView nib file has its File's Owner set your subclass of NSViewController.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文