HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 如何更改UITableViewCell的高度?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图让UITableViewCell在点击特定单元格时显示有关特定单元格的更多内容.一旦细胞膨胀并再次敲击,细胞应缩小回原始大小.

我很确定必须使用委托heightForRowATindexPath和didSELEctRowATindexPath完成某些操作,但我不知道如何使用didSELEctRowATindexPath选择特定的表格单元格行.

// Height of table cell rows
func tableView(tableView: UITableView,heightForRowATindexPath indexPath: NSIndexPath) -> CGFloat {
    return 45
}

//On cell tap,expand
func tableView(tableView: UITableView,didSELEctRowATindexPath indexPath: NSIndexPath) {
    self.tableView.rowHeight = 75;
}

此外,是否可以隐藏从父单元溢出的任何内容?有点像溢出:隐藏;在CSS中.

解决方法

在didSELEctRowATindexPath中选择的tableview上声明一个全局变量NSInteger类型和存储行,并在此处重新加载.在heightForRowATindexPath中检查行并在那里增加高度.
试试这样

var SELEctedIndex : NSInteger! = -1 //Delecre this global 

 func tableView(tableView: UITableView,didSELEctRowATindexPath indexPath: NSIndexPath) {
    if indexPath.row == SELEctedIndex{
        SELEctedIndex = -1
    }else{
        SELEctedIndex = indexPath.row
    }
    tableView.reloadData()
}

func tableView(tableView: UITableView,heightForRowATindexPath indexPath: NSIndexPath) -> CGFloat {
    if indexPath.row == SELEctedIndex
    {
        return 75
    }else{
        return 45
    }
}

大佬总结

以上是大佬教程为你收集整理的ios – 如何更改UITableViewCell的高度?全部内容,希望文章能够帮你解决ios – 如何更改UITableViewCell的高度?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。