我在 Mac OSX 应用程序上使用的类似于 iOS 上的 UITableView 的控件是什么?
我正在尝试在 Mac 应用程序中显示项目列表,并想知道与 Mac 上的 UITableView 最接近的匹配项。它是 NSTableView 吗?
I am trying to display a list of items in a Mac application and wondering what is the closest match to UITableView on Mac.Is it NSTableView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要
NSTableView
、NSOutlineView
(处理分层数据)或NSCollectionView
(仅绑定)之一。如果您愿意考虑第三方控件,Cocoa Objects 列出了一些表格视图的替代控件。
You’ll probably want one of
NSTableView
,NSOutlineView
(deals with hierarchical data), orNSCollectionView
(bindings only).If you’re willing to consider third party controls, Cocoa Objects lists some alternative controls for tabular views.