swift图文混排时,问题相关解决。
发布时间:2020-12-14 01:42:51 所属栏目:百科 来源:网络整理
导读:// 从问题出发找需要的源头. //1.textView.attribute - 需要 NSAttributeText - // -replaceCharactersInRange()需要范围和图片属性 -textView.selectedRange - // - 由于要在光标处,输入图片而且原文本不变 - // -需要一个NSMutableText(attributedString:
// 从问题出发找需要的源头. //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 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |