Cocoa:创建具有可变数量界面元素的窗口
我有一个窗口,其中包含未知数量的文本字段,由远程服务器的内容决定。
从高层次来说,我应该如何处理这个问题?创建 自定义视图 或创建一个带有支持 NSWindowController 的空窗口,然后在窗口打开时向其中添加内容?
我已经看过 O'Reilly Cocoa 书中的示例,它们有效地创建了自定义 NSView。 8年后,这是否是正确的做法?
I've a window that will have an unknown amount of text fields, determined by the content of a remote server.
In high level terms, how should I go about this? Create a custom view or create an empty window with a backing NSWindowController and then add stuff to it when the window is opened?
I've seen the examples on the O'Reilly Cocoa book and those effectively create a custom NSView. Is this the right way to do it, 8 year later?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可能想要一个 NSMatrix。 NSMatrix 允许您创建任意大的单元格网格。
根据您的具体需求,还可以选择表格、大纲、浏览器等。
You probably want an NSMatrix. A NSMatrix allows you to create an arbitrarily large grid of cells.
Tables, outlines, browser etc are also options depending on your specific needs.