gpt4 book ai didi

ios-防止滚动时重新加载 UITableView 中的单元格

转载 作者:行者123 更新时间:2023-11-29 01:40:25 26 4
gpt4 key购买 nike

我在UITableView 中实现了一个UIWebview。当我滚动表格 View 时,数据会重新加载并且 UIWebview 会出现一些闪烁。这是因为每当我滚动表格 View 时,单元格都会重新加载。我可以保存单元格的状态或将 UIWebview 的数据保存在 NSMutableArray 中以加快加载速度,但我无法保存单元格。那么我怎样才能保存单元格或防止一次又一次地重新加载单元格。我希望这些单元格只重新加载一次。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("videoCell") as! UITableViewCell

// var height = UIScreen.mainScreen().applicationFrame.size.height
let linksCell = links[indexPath.row].videoLink
let winksCell = links[indexPath.row]
mutArray.insertObject(linksCell!, atIndex: indexPath.row)
println(mutArray)


if let webView = cell.viewWithTag(21) as? UIWebView {

webView.scrollView.scrollEnabled = false
webView.scrollView.bounces = false
var html = "<html><body><iframe src=\"http://www.youtube.com/embed/\(mutArray[indexPath.row])\" width=\"\(videoTable.frame.width - 16)\" height=\"200\" frameborder=\"0\" allowfullscreen></iframe></body></html>"
webView.loadHTMLString(html, baseURL: nil)

// println(linksCell.videoLink)
// println(html)
}

if let videoName = cell.viewWithTag(22) as? UILabel {
videoName.text = winksCell.title
videoName.adjustsFontSizeToFitWidth = true
}

return cell

}

最佳答案

试试这个:我没有测试过。但试一试:

替换:

 let cell = tableView.dequeueReusableCellWithIdentifier("videoCell") as! UITableViewCell

let cell: UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "videoCell")

关于ios-防止滚动时重新加载 UITableView 中的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32451167/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com