我需要创建一个带有聊天气泡的 NSTableView,例如 Messages 应用程序。有没有我可以使用的示例代码/教程。
我正在尝试将基于视图的 NSTableView 与自定义 NSTableCellView 一起使用。我添加了背景图片并尝试使用以下代码来拉伸聊天气泡:
NSImage *backgroundImage = [NSImage imageNamed:@"Background"];
backgroundImage = [backgroundImage stretchableImageWithLeftCapWidth:10.0f topCapHeight:22.0f];
self.backgroundImageView.image = backgroundImage;
我正在关注https://github.com/drewmccormack/BackToTheMac的 MCImage 类别,但图像没有被拉伸。