我正在尝试在 Mac 上开发 XMPP 聊天客户端。我想用表情符号制作聊天文本字段,就像 Skype 一样。
我试过这种方式:NSTextView 在文本之间插入图像
NSMutableAttributedString* masterstring = [[NSMutableAttributedString alloc] initWithAttributedString:astring]; NSImage * 表情 = [NSImage imageNamed:@"smile.png"]; NSTextAttachmentCell *attachmentCell = [[NSTextAttachmentCell alloc] initImageCell:emoticon]; NSTextAttachment *attachment = [[NSTextAttachment alloc] init]; [附件集附件单元:附件单元]; NSAttributedString *attributedString = [NSAttributedString attributesStringWithAttachment: attachment]; [allstring insertAttributedString:attributedString atIndex:1];
所以我将表情图像插入到 NSTextField 中,但我无法将表情图像复制/粘贴到另一个 NSTextfield 中。请技术我。谢谢大家。