如何创建 itunes/finder/mail 样式表视图

发布于 2024-12-14 23:02:24 字数 167 浏览 3 评论 0原文

我想以 Finder 窗口左窗格的样式创建内容列表(类似于 Mail/iTunes/etc 的样式)。目前我的 NSTableView/NSOutlineView 实现看起来有点基本。

有没有教程可以帮助我模仿苹果的外观?特别是,我关注标题行、颜色等。

I'd like to create the content lists in the style of the Finder window's left pane (similarly in the style Mail/iTunes/etc). Currently my NSTableView/NSOutlineView implementation looks a little basic.

Is there any tutorial that can help me mimic the Apple look? In particular, I'm after the header rows, the colours, etc.

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

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

发布评论

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

评论(2

作业与我同在 2024-12-21 23:02:25

您需要首先获取源列表: setSelectionHighlightStyle:NSTableViewSelectionHighlightStyleSourceList

您可以通过实现委托方法来获取那些非常酷的标头:
- (BOOL)tableView:(NSTableView *)tableView isGroupRow:(NSInteger)row 或 NSOutlineView 对应项:
- (BOOL)outlineView:(NSOutlineView *)outlineView isGroupItem:(id)item

[myOutlineView setSelectionHighlightStyle:NSTableViewSelectionHighlightStyleSourceList];
- (BOOL)outlineView:(NSOutlineView *)outlineView isGroupItem:(id)item {
    return [self itemIsGroupItem:item];
}

这将为您提供选择渐变、蓝色背景、蚀刻标题行等。

You need to get a source list first: setSelectionHighlightStyle:NSTableViewSelectionHighlightStyleSourceList

You can get those really cool headers by implementing a delegate method:
- (BOOL)tableView:(NSTableView *)tableView isGroupRow:(NSInteger)row or the NSOutlineView counterpart:
- (BOOL)outlineView:(NSOutlineView *)outlineView isGroupItem:(id)item.

[myOutlineView setSelectionHighlightStyle:NSTableViewSelectionHighlightStyleSourceList];
- (BOOL)outlineView:(NSOutlineView *)outlineView isGroupItem:(id)item {
    return [self itemIsGroupItem:item];
}

This would get you the selection gradient, blue background, etched header rows, etc.

平生欢 2024-12-21 23:02:25

你应该看看 PXSourceList,它具有 Apple 外观和功能。感觉。

You should have a look at PXSourceList, it has the Apple look & feel.

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