我是靠谱客的博主 稳重手套,最近开发中收集的这篇文章主要介绍xcode+文字支持html元素,iOS使用UITextview实现富文本编辑,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

代码使用swift4 Xcode9及以上

主要思路是

Textview使用NSMutableAttributedString 转化为 html字符 给后台

其中图片另外 截取htmlStr里相应的图片标示 组成字典imgs[“标示Str”] = “图片Base64” 给后台

再编辑时拿到后台的 带图html字符串转为NSMutableAttributedString给Textview 使用enumerateAttribute可以获取图片

之后再保存和新建的保存差不多

主要注意NSAttachment的使用

attStr.enumerateAttribute(NSAttributedStringKey.attachment, in:NSRange.init(location:0, length:myHaq.attStr.length), options:NSAttributedString.EnumerationOptions(rawValue:0), using: { (value, range, stop)in

if let attachImg = (valueas?NSTextAttachment) {

let img = attachImg.image!

print(img)

imgs += [img]//最终处理 获取所有图片

// let attachmentWrapper = attachImg.fileWrapper!

// imgs += [UIImage.init(data: attachmentWrapper.regularFileContents!)!]

}

})

实现富文本字体格式

//加黑

myHaq.texterTypings[NSAttributedStringKey.font.rawValue] = myHaq.isBold ? UIFont.boldSystemFont(ofSize: myHaq.fontSize) : UIFont.systemFont(ofSize: myHaq.fontSize)

//斜体

myHaq.texterTypings[NSAttributedStringKey.obliqueness.rawValue] = sender.tintColor == colorSystem ? 0.25 : 0

//下划线

myHaq.texterTypings[NSAttributedStringKey.underlineStyle.rawValue] = sender.tintColor == colorSystem ? 1 : 0

//颜色

myHaq.texterTypings[NSAttributedStringKey.foregroundColor.rawValue] = colors[tapG.view!.tag]

//大小

myHaq.texterTypings[NSAttributedStringKey.font.rawValue] = myHaq.isBold ? UIFont.boldSystemFont(ofSize: myHaq.fontSize) : UIFont.systemFont(ofSize: myHaq.fontSize)

save到后台

let markHtmlStr = myHaq.attStr.toHtmlStr!//转为html字符串

varimgs = [UIImage]()

myHaq.attStr.enumerateAttribute(NSAttributedStringKey.attachment, in:NSRange.init(location:0, length:myHaq.attStr.length), options:NSAttributedString.EnumerationOptions(rawValue:0), using: { (value, range, stop)in

ifletattachImg = (valueas?NSTextAttachment) {

letimg = attachImg.image!

print(img)

imgs += [img]//最终处理 获取所有图片

// let attachmentWrapper = attachImg.fileWrapper!

// imgs += [UIImage.init(data: attachmentWrapper.regularFileContents!)!]

}

})

myHaq.netDic.removeAll()

varimgIdx =0

forstrinmarkHtmlStr.components(separatedBy:"n") {

print(str)

//str 注意 iOS12 没有contains("file:") 存储图片标示策略需调整

// iOS12之前:

// iOS12:

if str.contains("file:") {//截取转化后的htmlStr中的所有img标示

varstr1 = str

print(str1)

ifstr.contains("//Attachment") {

str1 =String(str1[str1.range(of:"")!.upperBound])

}else{//网络图片 修改时是后台传来的图片地址

str1 =String(str1[str1.range(of:"")!.upperBound])

}

print(str1)

myHaq.netDic[str1] =UIImageJPEGRepresentation(imgs[imgIdx],1.0)!.base64EncodedString(options:NSData.Base64EncodingOptions.lineLength64Characters)

imgIdx +=1

}

}

myHaq.netDic["markHtmlStr"] = markHtmlStr//数据在myHaq.netDic里 发送网络请求就ok

以上只是截取代码部分

最后

以上就是稳重手套为你收集整理的xcode+文字支持html元素,iOS使用UITextview实现富文本编辑的全部内容,希望文章能够帮你解决xcode+文字支持html元素,iOS使用UITextview实现富文本编辑所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(32)

评论列表共有 0 条评论

立即
投稿
返回
顶部