gpt4 book ai didi

ios - UITableViewAutomaticDimension 单元格在滚动或拉动刷新后调整大小

转载 作者:行者123 更新时间:2023-11-28 11:11:27 26 4
gpt4 key购买 nike

我添加了一个表格 View ,我在单元格中显示图像。我还添加了这段代码:

tableView.estimatedRowHeight = 175
tableView.rowHeight = UITableViewAutomaticDimension

使单元格根据图像调整大小。

但是当我启动我的应用程序时,我得到了这个:

enter image description here

在我开始滚动之前图像不会加载...如果我向下滚动一半页面然后返回顶部,我得到这个(这是正确的):

enter image description here

此外,如果我删除了“赞”按钮并且仅将图像单独放在一个单元格中,当我启动我的应用程序时,如果我等待 3 秒而不触摸任何东西,单元格会自行调整大小......?!

有什么想法吗?我在谷歌上进行了研究,并尝试了针对旧版本 Xcode 的奇怪解决方案,但似乎没有任何效果!

这是我在 TableViewController 中的其余代码:

extension TimelineViewController: UITableViewDataSource {

func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 46
}

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return timelineComponent.content.count
}

func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let headerCell = tableView.dequeueReusableCellWithIdentifier("PostHeader") as! PostHeaderTableViewCell

let post = self.timelineComponent.content[section]
headerCell.post = post


return headerCell
}


func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}

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

//cell.postImageView?.image = UIImage(named: "Background.png")

let post = timelineComponent.content[indexPath.section]
post.downloadImage()
post.fetchLikes()
cell.post = post

cell.layoutIfNeeded()
return cell
}
}

extension TimelineViewController: UITableViewDelegate {
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
timelineComponent.targetWillDisplayEntry(indexPath.section)
}


Download image code:

func downloadImage() {
// 1
image.value = Post.imageCache[self.imageFile!.name]

if image is not downloaded yet, get it
if (image.value == nil) {

imageFile?.getDataInBackgroundWithBlock { (data: NSData?, error: NSError?) -> Void in
if let data = data {
let image = UIImage(data: data, scale: 2.0)!
self.image.value = image
// 2
Post.imageCache[self.imageFile!.name] = image
}
}
}
}

// MARK: PFSubclassing
extension Post: PFSubclassing {
static func parseClassName() -> String {
return "Post"
}

override class func initialize() {
var onceToken : dispatch_once_t = 0;
dispatch_once(&onceToken) {
// inform Parse about this subclass
self.registerSubclass()
// 1
Post.imageCache = NSCacheSwift<String, UIImage>()
}
}
}


And here is my TableViewCell:


var post: Post? {
didSet {
postDisposable?.dispose()
likeDisposable?.dispose()

if let oldValue = oldValue where oldValue != post {

oldValue.image.value = nil

}

if let post = post {

postDisposable = post.image
.bindTo(postImageView.bnd_image)

likeDisposable = post.likes
.observe { (value: [PFUser]?) -> () in

if let value = value {
//self.likesLabel.text = self.stringFromUserList(value)
self.likeButton.selected = value.contains(PFUser.currentUser()!)
// self.likesIconImageView.hidden = (value.count == 0)
} else {
//self.likesLabel.text = ""
self.likeButton.selected = false
//self.likesIconImageView.hidden = true

}
}
}
}
}

非常感谢任何帮助!

最佳答案

我猜,你需要在最终加载图像时重新加载单元格,因为当新尺寸的图像到达时 tableView 需要重新计算单元格高度(以及整个 contentHeight)

post.downloadImage { _ in
if tableView.indexPathForCell(cell) == indexPath {
tableView.reloadRowsAtIndexPaths([indexPath], animation: .None)
}
}

而downloadImage方法需要调用完成闭包。诸如此类。

func downloadImage(completion: ((UIImage?) -> Void)?) {

if let imageValue = Post.imageCache[self.imageFile!.name] {
image.value = imageValue
completion?(imageValue)
return
}

//if image is not downloaded yet, get it
imageFile?.getDataInBackgroundWithBlock { (data: NSData?, error: NSError?) -> Void in
if let data = data {
let image = UIImage(data: data, scale: 2.0)!
self.image.value = image
// 2
Post.imageCache[self.imageFile!.name] = image

completion?(image)
} else {
completion?(nil)
}
}
}

关于ios - UITableViewAutomaticDimension 单元格在滚动或拉动刷新后调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34795120/

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