如何在 NSTableView 中显示图像?
我有一个 NSTableView 正在填充我的数据源。
我的数据模型有一个图像的 URL。
我想在 NSTableView 的每个单元格中的某些文本旁边显示图像。基本上就像 Twitter 客户端一样,图像在左侧,一些文本在右侧。
我不知道可可该怎么做?我熟悉 Cocoa-Touch 中的流程(通过子类化 UITableViewCell)。
I have an NSTableView that is populating with my data source.
My data model has a URL to an image.
I would like to display an image next to some text in every cell of my NSTableView. Basically like a twitter client, image on the left, with some text on the right.
I am not sure how to do this Cocoa? I am familiar with the process in Cocoa-Touch (by subclassing UITableViewCell).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该将
NSImageCell
拖到您想要显示图像的列上。然后通过图像单元格绑定窗格调整图像的值。You should drag
NSImageCell
onto the column you want your image to be displayed. Then adjust the value of the image via image cell bindings pane.您可以在每个单元格上创建一个框架,并在其中绘制图片。请参阅此处:
http://blog.webscale.co.in/?p=284
You can create a frame on each cell, and draw a picture in that. Refer here:
http://blog.webscale.co.in/?p=284