如何在 Swift 3 中使用 HTML 标签切换字符串以清除字符串
Posted
技术标签:
【中文标题】如何在 Swift 3 中使用 HTML 标签切换字符串以清除字符串【英文标题】:How to switch string with HTML tags to clear string in Swift 3 【发布时间】:2016-10-12 20:53:07 【问题描述】:我有旧代码:
func htmlToText(encodedString:String) -> String?
let encodedData = encodedString.dataUsingEncoding(NSUTF8StringEncoding)!
do
return try NSAttributedString(data: encodedData, options: [NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType,NSCharacterEncodingDocumentAttribute:NSUTF8StringEncoding], documentAttributes: nil).string
catch let error as NSError
print(error.localizedDescription)
return nil
我想把它翻译成 swift 3,现在我有了:
let encodedData = encodedString.data(using: String.Encoding.utf8)!
do
return try NSAttributedString(data: encodedData, options: [NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType,NSCharacterEncodingDocumentAttribute:String.Encoding.utf8], documentAttributes: nil).string
catch let error as NSError
print(error.localizedDescription)
return nil
此代码生成错误: 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[_SwiftValue unsignedIntegerValue]:无法识别的选择器发送到实例 0x608000251d30” 我不知道可能出了什么问题。有人可以帮帮我吗?
【问题讨论】:
【参考方案1】:String.Encoding
是一个 Swift 结构体,不能传递给 Objective-C 世界。当 Swift 在 Any
中找到这样的东西时,它会生成 _SwiftValue
,这在 Objective-C 中是完全没用的。
试试这个:
return try NSAttributedString(data: encodedData, options: [
NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType,
NSCharacterEncodingDocumentAttribute:String.Encoding.utf8.rawValue
], documentAttributes: nil).string
【讨论】:
以上是关于如何在 Swift 3 中使用 HTML 标签切换字符串以清除字符串的主要内容,如果未能解决你的问题,请参考以下文章
如果标签栏控制器位于另一个 ui 控制器中,如何以编程方式切换标签? -迅速