滚动后 UITableView 单元格正确

Posted

技术标签:

【中文标题】滚动后 UITableView 单元格正确【英文标题】:UITableView cell correct after scrolling 【发布时间】:2018-01-02 08:32:20 【问题描述】:

我创建了一个 Swift UITableView 的帖子,每个帖子都包含一些文本和一个图表图像。使用 SDWebImage 和 Firebase 异步加载图像。图片有不同的高度,但宽度是固定的。

这是一个显示显示问题的短视频:https://youtu.be/QzQFT2z0GjA

有些单元格第一次显示不正确,但滚动后看起来很完美。我阅读了有关使用 layoutIfNeeded 和 setNeedsLayout as suggested in this post 或 ios 11 UITableViewAutomaticDimension 的信息,但它似乎不适用于我的情况。

这是我的代码:

var postArray : [Post] = [Post]()

override func viewDidLoad() 
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.

    postTableView.delegate = self
    postTableView.dataSource = self
    aLaUneWidthConstraint.constant = view.frame.size.width/2

    etatFranceWidthConstraint.constant = view.frame.size.width/2
    postTableView.register(UINib(nibName:"TableViewCell", bundle: nil), forCellReuseIdentifier: "postCell")



    activityIndicator.activityIndicatorViewStyle = UIActivityIndicatorViewStyle.gray
    activityIndicator.startAnimating()

    retrievePosts()



override func viewWillAppear(_ animated: Bool) 
    self.navigationController?.isNavigationBarHidden = true


func numberOfSections(in tableView: UITableView) -> Int 
    return 1


func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int 
    return postArray.count


func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 

    let cell = tableView.dequeueReusableCell(withIdentifier: "postCell", for: indexPath) as! TableViewCell

    tableView.separatorStyle = UITableViewCellSeparatorStyle.none
    cell.selectionStyle = UITableViewCellSelectionStyle.none

    cell.postTitle.text = postArray[indexPath.row].title
    cell.postSource.text = postArray[indexPath.row].source
    cell.postChart.sd_setImage(with: URL(string: postArray[indexPath.row].chartURL!), placeholderImage: UIImage(named: "placeholder.png"))  (image, error, cache, url) in
        cell.chartHeightConstraint.constant = ((cell.postChart.image?.size.height)!/2)
        cell.setNeedsLayout()
        cell.layoutIfNeeded()
    

    return cell



func retrievePosts() 

    let postDB = Database.database().reference().child("Posts")

    postDB.observe(.childAdded, with:  (snapshot) in

        let snapshotValue = snapshot.value as! NSDictionary

        let title = snapshotValue["title"] as! String
        let source = snapshotValue["source"] as! String
        let chartURL = snapshotValue["chartURL"] as! String
        let category = snapshotValue["category"] as! String

        let post = Post(data: snapshotValue)
        post.title = title
        post.source = source
        post.chartURL = chartURL
        post.category = category

        self.postArray.append(post)

        self.activityIndicator.stopAnimating()
        self.activityView.isHidden = true
        self.activityView.frame.size.height = 0
        self.postTableView.reloadData()

    )


有什么想法吗?提前致谢。

【问题讨论】:

Dynamic image height in tableview with using sdwebimage的可能重复 问题是你的自动布局。只是teamviewer,我可以帮你解决这个问题 【参考方案1】:

解决方案包括在 Post 对象中添加 chartWidth 和 chartHeight 参数,并为 Firebase 数据库中的每个帖子添加它们的值,然后设置一些约束以在下载图像之前预先计算单元格高度。

在 TableViewCell.swift 中添加:

func setChartSize(size: CGSize) 
    postChart.removeConstraint(postChartRatioConstraint)

    postChartRatioConstraint = NSLayoutConstraint(
        item: postChart,
        attribute: .height,
        relatedBy: .equal,
        toItem: postChart,
        attribute: .width,
        multiplier: (size.height / size.width),
        constant: 0)

    postChart.addConstraint(postChartRatioConstraint)

在 ViewController 中使用 setChartSize 函数:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 

    let cell = tableView.dequeueReusableCell(withIdentifier: "postCell", for: indexPath) as! TableViewCell

    tableView.separatorStyle = UITableViewCellSeparatorStyle.none
    cell.selectionStyle = UITableViewCellSelectionStyle.none

    let post = postArray[indexPath.row]

    cell.postTitle.text = post.title
    cell.postSource.text = post.source

    cell.postChart.sd_setShowActivityIndicatorView(true)
    cell.postChart.sd_setIndicatorStyle(.white)

    cell.setChartSize(size: CGSize(width: post.chartWidth!, height: post.chartHeight!))
    cell.postChart.sd_setImage(
        with: URL(string: post.chartURL!),
        placeholderImage: UIImage(named: "placeholder.png"),
        options: [.continueInBackground],
        completed: nil)

    return cell

下载图表后调整单元格大小等任何其他选项都会生成滚动跳转。

【讨论】:

【参考方案2】:

斯威夫特 5+ IOS 13 Xcode 11.2.1 + 惊人的答案 https://***.com/a/58832555/6881070

override func viewDidAppear(_ animated: Bool) 
    //  self.tablev.frame.origin.y = vnavigation.frame.maxY + 5
    //   tablevheight = self.tablev.frame.size.height
    self.bgview.backgroundColor = UIColor.init(patternImage: UIImage(named: "chat_bg.png")!)
    self.registerForKeyboardNotifications()
    UIView.performWithoutAnimation 
        tablev.beginUpdates()
        tablev.endUpdates()
    

【讨论】:

以上是关于滚动后 UITableView 单元格正确的主要内容,如果未能解决你的问题,请参考以下文章

UITableView 单元格在向下滚动然后备份后消失

UITableView 单元格内容未正确显示

关闭另一个视图后 UITableView 滚动内容大小不正确

UITableView 的单元格分隔符在滚动后消失

滚动 UITableView 和 UICollectionView 的数据不正确

调用 reloadData 后 UITableView 动态单元格高度滚动到顶部