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
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值