iOS   发布时间:2022-05-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – NSTextAttachment图像未在NSTextView中显示(但在UITextView中)?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

我在获取NSTextAttachment图像以在OS X应用程序的NSTextView中工作时遇到问题. NSTextAttachment的图像根本不显示.但是,它似乎仍然设置正确.因为复制NSTextView的内容并将其粘贴回例如TextEdit.app,粘贴的文本正确包含图像. 这是一个重现这个问题的最小游乐场: import Cocoa let img = NSImage(named: "
我在获取NSTextAttachment图像以在OS X应用程序的NSTextView中工作时遇到问题.

NSTextAttachment的图像根本不显示.但是,它似乎仍然设置正确.因为复制NSTextView的内容并将其粘贴回例如TextEdit.app,粘贴的文本正确包含图像.

这是一个重现这个问题的最小游乐场:

import Cocoa

let img = NSImage(named: "checked")

let textView = NSTextView(frame: NsmakeRect(0,254,64))

let attrstr = NSMutableAttributedString(String: "Test")

let attch = NSTextAttachment()
attch.image = img

attrstr.appendAttributedString(NSAttributedString(attachment: attch))

textView.textStorage!.setAttributedString(attrstr)

textView

ios – NSTextAttachment图像未在NSTextView中显示(但在UITextView中)?

预期产量:

ios – NSTextAttachment图像未在NSTextView中显示(但在UITextView中)?

对于iOS,所以使用UIKit而不是Cocoa,它可以很好地工作:

import UIKit

let img = UIImage(named: "checked")

let textView = UITextView(frame: CGRectMake(0.0,0.0,200.0,44.0))

let attrstr = NSMutableAttributedString(String: "Test")

let attch = NSTextAttachment()
attch.image = img

attrstr.appendAttributedString(NSAttributedString(attachment: attch))

textView.attributedText = attrstr

textView

ios – NSTextAttachment图像未在NSTextView中显示(但在UITextView中)?

我正在使用XCode 7.两个游乐场都可以下载here.

任何想法都非常欢迎,提前致谢!

解决方法

var thumbnailImage: NSImage? = // some image
var attachmentCell: NSTextAttachmentCell = NSTextAttachmentCell.initImageCell(thumbnailImage!)
var attachment: NSTextAttachment = NSTextAttachment()
attachment.attachmentCell = attachmentCell
var attrString: NSAttributedString = NSAttributedString.attributedStringWithAttachment(attachment)
self.textView.textStorage().appendAttributedString(attrString)

大佬总结

以上是大佬教程为你收集整理的ios – NSTextAttachment图像未在NSTextView中显示(但在UITextView中)?全部内容,希望文章能够帮你解决ios – NSTextAttachment图像未在NSTextView中显示(但在UITextView中)?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。