ios - 由于 NSAttributedString,UITableView 滚动不流畅

标签 ios uitableview swift3 nsattributedstring smooth-scrolling

我正在使用 NSAttributedString 将 html 字符串转换为 attributedString。我已经转换了它,但 label 在单元格中,所以我在 cellForRowAtIndex 中编写了下面的代码,当我应用此代码时,tableview 不会平滑滚动。如果我用简单的文本删除它,它会平滑滚动。

 cell.lblDescription.setHTMLFromString(htmlText: model.strItineraryDescription)

我已经将 html string 转换为 attributed string

extension UILabel {

    func setHTMLFromString(htmlText: String) {
        let modifiedFont = NSString(format:"<span style=\"font-family: '-apple-system', 'HelveticaNeue'; font-size: \(self.font!.pointSize)\">%@</span>" as NSString, htmlText) as String


        //process collection values
        let attrStr = try! NSAttributedString(
            data: modifiedFont.data(using: .unicode, allowLossyConversion: true)!,
            options: [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute: String.Encoding.utf8.rawValue],
            documentAttributes: nil)


        self.attributedText = attrStr
    }

}

我的html字符串

<strong><u>Featured Program</u></strong></p>
\n<ol>
\n  <li>Arrival at Delhi airport. You will receive by our representative.</li>
\n  <li>Driving to Agra and exploring the city.</li>
\n  <li>Back to Hotel for Overnight stay.</li>
\n</ol>
\n<p><strong>City Features</strong></p>
\n<ol>
\n  <li><strong>Visit to Agra Fort \U2013 </strong>Former Name Badalgarh, Shah-Jahan spent his last eight years here. You can watch the mesmerizing view of Taj Mahal from this fort just like Shah Jahan.</li>
\n  <li><strong>Visit to Taj Mahal \U2013</strong> It took 21 years to build and stood in 1653. The palace is considered as the symbol of love. Shah Jahan built this wonder in the memory of his wife Mumtaj Mahal.</li>
\n</ol>
\n<p><strong>(Both Agra Fort and Taj Mahal are UNESCO Declared world heritage site)</strong>

最佳答案

这个 html2AttributedString 有什么作用?它是否在 cellForRowAtIndexPath 上即时将 HTML 转换为属性字符串?如果是,这实际上需要时间。我们能否通过在模型中的另一个变量中缓存 HTML 的等效属性字符串来在内存上做出妥协以加快速度。因此,通过这种方式重新加载时,它将在单元格创建或重用期间获取准备好的属性字符串。

例如,伪代码:

class MyModel
{
    var myHTML: String = ""
    var myHTML2AttributedString: String = ""
}


class ModelMapping
{
  ...
  myModel.myHTML = responseFromJSON["htmlText"]
  myModel.myHTML2AttributedString = customFuncToConvertHTMLToAttributed(myModel.myHTML)
  ...
}

class ViewController
{
  ...
  cell.lblDescription.attributedText = myModel.myHTML2AttributedString // This one would be cached Attributed string equivalent of HTML string.
  ...
}

希望对您有所帮助!

编辑:

class MyModel
{
    var myAttributedHTML: NSMutableAttributedString = ""
    var strItineraryDescription: String = ""

    func prepareHTMLFromString() {
        let modifiedFont = NSString(format:"<span style=\"font-family: '-apple-system', 'HelveticaNeue'; font-size: \(self.font!.pointSize)\">%@</span>" as NSString, self.strItineraryDescription) as String


        //process collection values
        let attrStr = try! NSAttributedString(
            data: modifiedFont.data(using: .unicode, allowLossyConversion: true)!,
            options: [NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute: String.Encoding.utf8.rawValue],
            documentAttributes: nil)


        myAttributedHTML = attrStr.mutableCopy()
    }
}

class MyViewController
{
   ...
   cell.lblDescription.attributedText = myModel.myAttributedHTML
   ...
}

class ResponseHandler
{
   ...
   myModel.strItineraryDescription = responseFromServer["myHTML"]
   myModel.prepareHTMLFromString()
   ...
}

关于ios - 由于 NSAttributedString,UITableView 滚动不流畅,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43736150/

相关文章:

ios - 标签栏图标像素化

ios - Xcode 8 测试版 6 错误 : Attempt to serialize store access on non-owning coordinator

iphone - iPhone sdk中的sqlite外键

swift - Swift 中重复的表格 View 单元格

swift 3 - 搜索结果也带有变音符号

ios - 使用 swift,一旦给出用户登录信息,是否可以在后台打开一个 webview 以从网站获取数据?

ios - swift : Change the color of a specific X-Axis label and the corresponding data value in a line chart using Charts framework

iphone - Cocoa Touch 中的委托(delegate)与事件

iphone - iOS - CAKeyFrameAnimation - 不播放

IOS 8 改变键盘高度