Cocoa界面设计问题

发布于 2024-08-15 15:34:53 字数 208 浏览 1 评论 0原文

对于我正在设计的窗口来说,最好的事情是一个表格,其中数组的每个元素都有两行。我在第一行中有一个复选框和两个弹出窗口,第二行将用于文本输入。根据我对 NSTableView 的理解,这是不可能的。我研究了 NSCollectionView 但没有任何经验,所以我的选择是标准的四列表或处理 NSCollectionView。在此之前,我想征求更有经验的 Cocoa 开发人员的意见。

谢谢

The best thing for the window I'm designing would be a table with two rows for each element of an array. I'd have one checkbox and two popups in the first row and the second row would be used for text entry. Based on what I understand of a NSTableView is that's not possible. I looked into a NSCollectionView but I don't have any experience with that so my choices are a standard four-column table or tackle a NSCollectionView. Before I do that I wanted to get the opinions of more experienced Cocoa developers.

Thanks

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

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

发布评论

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

评论(1

你穿错了嫁妆 2024-08-22 15:34:53

这可以使用 NSTableview 或 NSCollectionview 来实现。 NSTableview 的方式是子类 NSTextfieldCell ...看看苹果的 PhotoSearch 示例中的 ImagePreviewCell.m 。

http://developer.apple.com/mac/library/samplecode/PhotoSearch/< /a>

NSCollectionview 方式需要更少的代码(您可以在 IB 中设置几乎所有代码),但 NSTableView 比 NSCollectionview 拥有一些东西(如标题等)。

This is possible using either an NSTableview or an NSCollectionview. The NSTableview way would be to subclass NSTextfieldCell ... take a look at ImagePreviewCell.m in apple's PhotoSearch example.

http://developer.apple.com/mac/library/samplecode/PhotoSearch/

The NSCollectionview way would require less code (you can set just about all of it up in IB), but an NSTableView has stuff (like headers etc) than an NSCollectionview doesn't.

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