gpt4 book ai didi

ios - 滚动后 UITableView 单元格正确

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:23 24 4
gpt4 key购买 nike

我创建了一个帖子的 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()

})

}

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

最佳答案

解决方案包括在 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
}

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

关于ios - 滚动后 UITableView 单元格正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48057813/

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