NSTextView在文本之间插入图像

Ami*_*k12 12 macos cocoa objective-c nstextview nsimage

是否可以将图像(不是背景图像)插入NSTextView?就像是:

Hi :) How are you?

它应该显示一个"笑脸"图像.我有一个NSTextView和一个NSImage.

Ann*_*nne 36

将NSImage插入NSTextView:

NSImage * pic = [[NSImage alloc] initWithContentsOfFile:@"/Users/Anne/Desktop/Sample.png"];
NSTextAttachmentCell *attachmentCell = [[NSTextAttachmentCell alloc] initImageCell:pic];
NSTextAttachment *attachment = [[NSTextAttachment alloc] init];
[attachment setAttachmentCell: attachmentCell ];
NSAttributedString *attributedString = [NSAttributedString  attributedStringWithAttachment: attachment];
[[textView textStorage] appendAttributedString:attributedString];
Run Code Online (Sandbox Code Playgroud)

在头文件中:

IBOutlet id textView;
Run Code Online (Sandbox Code Playgroud)