您的位置:首页 > 移动开发 > Swift

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

2015-10-21 22:01 609 查看
// 从问题出发找需要的源头.

//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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: