将不同的视图动态加载到自定义视图中
我有一个执行多步骤过程的应用程序。每个步骤都是作为 NSView 子类实现的,我想在不同的视图之间导航。我通过实现自定义视图然后将不同的视图加载到我制作的自定义视图中来尝试此操作。这是正确的做法吗? 实现这一点的最佳方法是什么?
I've an application that performs a multi-step process. Each step is implemented as a NSView
subclass and I want to navigate between the different views. I'm trying this by implementing a custom view and then loading different views into the custom view I made. Is this the right way to do it?
What is the best approach to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
直到您只使用一种视图,您的方法才是正确的。如果您将一个视图加载到自定义视图中并在加载另一个视图之前将其删除,我觉得没问题。确保您仅使用一种视图来完成我认为是可能的任务。
祝一切顺利。如果您找到更好的方法,请更新
TNQ
until you use only one view your approach is correct. If you load a view into your custom view and remove it before loading another view ,i feel it's ok. make sure that you use only one view to accomplish your task which i feel is possible.
all the best.if you find a better approach plz update
TNQ