如何创建 itunes/finder/mail 样式表视图
我想以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要首先获取源列表:
setSelectionHighlightStyle:NSTableViewSelectionHighlightStyleSourceList
您可以通过实现委托方法来获取那些非常酷的标头:
- (BOOL)tableView:(NSTableView *)tableView isGroupRow:(NSInteger)row
或 NSOutlineView 对应项:- (BOOL)outlineView:(NSOutlineView *)outlineView isGroupItem:(id)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
.This would get you the selection gradient, blue background, etched header rows, etc.
你应该看看 PXSourceList,它具有 Apple 外观和功能。感觉。
You should have a look at PXSourceList, it has the Apple look & feel.