swift图文混排时,问题相关解决。

前端之家收集整理的这篇文章主要介绍了swift图文混排时,问题相关解决。前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
// 从问题出发找需要的源头. //1.textView.attribute -> 需要 NSAttributeText -> // ->replaceCharactersInRange()需要范围和图片属性 ->textView.selectedRange -> // -> 由于要在光标处,输入图片而且原文本不变 -> // ->需要一个NSMutableText(attributedString: textView.attributedText) // ->2.建立一个NSAttributedString -> attachment:缺少一个 NSTextAttachment // -> 3. 初始化一个NSTextAttachment()对象 attachment -> 4. 对象属性中有image可以做图文混排 // let attachment = NSTextAttachment() attachment.image = UIImage(contentsOfFile: emoticon.imagePath) //问题二 设置苹果的高度 let height = textView.font!.lineHeight // bounds 的x / y 就是scrollView的contentOffset,苹果利用bounds 的x / y 能够调整空间内部 // 的偏移量位置 attachment.bounds = CGRect(x: 0,y: -4,width: height,height: height) //问题三 图片属性字符串,没设字体大小,导致插入图片属性高低不小 let imageText = NSMutableAttributedString(attributedString: NSAttributedString(attachment: attachment)) // 解决问题三,插入图片大小问题 imageText.addAttribute(NSFontAttributeName,value: height,range: NSRange(location: 0,length: 1)) let mutableText = NSMutableAttributedString(attributedString: textView.attributedText) mutableText.replaceCharactersInRange(textView.selectedRange,withAttributedString: imageText) //问题一。记录光标 //1). 记录光标 let range = textView.selectedRange textView.attributedText = mutableText //2).恢复光标,同时让光标跑到原光标的位置的后一个位置(range.location + 1),同时不保留length(0) textView.selectedRange = NSRange(location: range.location + 1,length: 0) tu 原文链接:https://www.f2er.com/swift/325633.html

猜你在找的Swift相关文章