gpt4 book ai didi

swift - 在 selectedIndex 展开单元格

转载 作者:搜寻专家 更新时间:2023-10-31 22:56:54 25 4
gpt4 key购买 nike

更新了下面的代码

我正在处理限制为 100 个字符的评论单元格,如果它们包含更多字符,则会显示“显示更多按钮”。

如果按下,确切的单元格应重新加载自身,行数更改为 0 并完全显示该单元格,无论它有多大。

我所取得的成就是重​​新加载单元格,但不会重新加载选定的单元格,这有点随意。

下面是我的放大过程代码

注意:为我的函数更新代码

问题:我必须按两次按钮才能得到结果,最小化和最大化单元格

   @IBAction func readMore(_ sender: UIButton) {


self.state = !self.state

print("state" , state)
self.tapMore.setTitle(self.state ? self.decreaseState: self.expandState, for: .normal)
self.commentLabel.numberOfLines = (self.state ? self.expandedLines: self.numberOfLines)
print(self.commentLabel.numberOfLines)
let myIndexPath = IndexPath(row: sender.tag, section: 0)

UIView.animate(withDuration: 0.3, animations: {
self.parentViewControllerCommentCell?.tableView.reloadRows(at: [myIndexPath], with: UITableViewRowAnimation(rawValue: Int(UITableViewAutomaticDimension))!)
})
}

索引来自

extension CommentTableViewCell {

var indexPath: IndexPath? {
return (superview as? UITableView)?.indexPath(for: self)
}
}

注意

print 语句打印出所选单元格(例如 [0, 1] 或 [0,0] 但它不会改变。

而我硬编码我的代码并更改 let myIndexPath = IndexPath(row: indexPath!.row, section: 0)

到 让 myIndexPath = IndexPath(行: 0, 部分: 0)

该功能有效,但会任意重新加载一些单元格并任意放大和缩小单元格。

在带有 row: indexPath!.row 的变量版本中,行状态也没有改变,而硬编码的行在 3 和 0 之间变化。

感谢您的帮助:)

添加

我的评论单元格

class CommentTableViewCell: UITableViewCell {

@IBOutlet weak var likeCountButton: UIButton!
@IBOutlet weak var profileImageView: UIImageView!
@IBOutlet weak var commentLabel: KILabel!
@IBOutlet weak var nameLabel: UILabel!
@IBOutlet weak var timeLabel: UILabel!
@IBOutlet weak var likeImageView: UIImageView!


@IBOutlet weak var tapMore: UIButton!

@IBOutlet weak var tapMoreButton: UIButton!


var delegate: CommentTableViewCellDelegate?
var postId : String!

最佳答案

这是让您获得正确索引路径的更好方法。首先,在您的 cellForRow 方法中,将当前索引行作为标记添加到您的显示更多按钮,然后将点击操作添加到您的按钮处理函数。

在您自定义的 UITableViewCell 类中添加一个 UIButton 的导出

class CustomCell: UITableViewCell {
@IBOutlet var moreButton: UIButton! // Connect your button from storyboard
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CustomCell") as! CustomCell
cell.moreButton.tag = indexPath.row
/* Just add action normally from storyboard. No need to add target. cell.moreButton.addTarget(self, action:#selector(buttonUp(sender:)), for: .touchUpInside) */

return cell
}

然后在你的处理函数中,你可以通过读取这个标签来获取正确的索引路径

func tapForMore(sender: UIButton) {
let myIndexPath = IndexPath(row: sender.tag, section: 0)
print("myindex", myIndexPath)
//... other code here
}

关于swift - 在 selectedIndex 展开单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44845247/

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