Mac で XMPP チャット クライアントを開発しようとしています。Skypeのように絵文字付きのチャットテキストフィールドを作りたいです。
私はこの方法を試しました: NSTextView はテキストの間に画像を挿入します
NSMutableAttributedString* mastring = [[NSMutableAttributedString alloc] initWithAttributedString:astring];
NSImage * emoticon = [NSImage imageNamed:@"smile.png"];
NSTextAttachmentCell *attachmentCell = [[NSTextAttachmentCell alloc] initImageCell:emoticon];
NSTextAttachment *attachment = [[NSTextAttachment alloc] init];
[アタッチメント setAttachmentCell: attachmentCell ];
NSAttributedString *attributedString = [NSAttributedString attributedStringWithAttachment: 添付ファイル];
[allstring insertAttributedString:attributedString atIndex:1];
そのため、絵文字画像を NSTextField に挿入しましたが、絵文字画像を別の NSTextfield にコピー/貼り付けできません。テクしてください。みんなありがとう。