我有一个包含表视图的视图控制器。我想增加每当按下节标题时显示ROW的功能,反之亦然( 可扩展表格视图 )。
下面的代码显示了我为表视图编写的代码:
func numberOfSections(in tableView: UITableView) -> Int {
return data.count
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let cell = tableview.dequeueReusableCell(withIdentifier: "ReportHeaderCell") as! ReportHeaderTableViewCell
cell.IMG.image = #imageLiteral(resourceName: "Cost_Arrow")
cell.BillHeaderTitle.text = data[section].billType
cell.totalValue.text = data[section].totalValue?.addComma
cell.dateLbl.text = data[section].billDate
let animationView = LOTAnimationView(name: "CloseOpen")
animationView.frame = CGRect(x: 0, y: 0, width: 30, height: 30)
animationView.loopAnimation = false
animationView.autoReverseAnimation = false
animationView.play(fromProgress: 0, toProgress: 0.0, withCompletion: nil)
cell.openCloseView.addSubview(animationView)
animationView.play()
cell.MainView.addTapGesture {
print("header is tapped")
if self.isOpen[section] == true
{
print("header is open")
self.isOpen[section] = false
// we'll try to close the section first by deleting the rows
var indexPaths = [IndexPath]()
for row in self.data[section].units.indices {
print(0, row)
let indexPath = IndexPath(row: row, section: section)
indexPaths.append(indexPath)
// tableView.deleteRows(at: indexPaths, with: .bottom)
// tableview.reloadData()
self.tableview.deleteRows(at: indexPaths, with: .top)
}
let animationView = LOTAnimationView(name: "CloseOpen")
animationView.frame = CGRect(x: 0, y: 0, width: 30, height: 30)
animationView.loopAnimation = false
animationView.autoReverseAnimation = false
animationView.animationSpeed = 2.5
animationView.play(fromProgress: 1, toProgress: 0.0, withCompletion: nil)
cell.openCloseView.addSubview(animationView)
animationView.play()
}
else
{
print("header is close")
self.isOpen[section] = true
//let's open it
// we'll try to close the section first by deleting the rows
var indexPaths = [IndexPath]()
for row in self.data[section].units.indices
{
print(0, row)
let indexPath = IndexPath(row: row, section: section)
indexPaths.append(indexPath)
// tableView.insertRows(at: indexPaths, with: .top)
self.tableview.insertRows(at: indexPaths, with: .top)
// tableview.reloadData()
let animationView = LOTAnimationView(name: "CloseOpen")
animationView.frame = CGRect(x: 0, y: 0, width: 30, height: 30)
animationView.loopAnimation = false
animationView.autoReverseAnimation = false
animationView.play(fromProgress: 0, toProgress: 1, withCompletion: nil)
animationView.animationSpeed = 2.5
cell.openCloseView.addSubview(animationView)
animationView.play()
}
}
}
return cell
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if self.isOpen[section] == true
{
print(data[section].units.count)
return data[section].units.count
}
else
{
return 0
}
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableview.dequeueReusableCell(withIdentifier: "ReportCell") as! ReportTableViewCell
//
// if indexPath.row != 0
// {
cell.UnitName.text = data[indexPath.section].units[indexPath.row]?.unitName
// print(data[indexPath.section].units[indexPath.row]?.unitName!)
cell.Unitdebit.text = data[indexPath.section].units[indexPath.row]?.debit?.addComma
if indexPath.row == data.count - 1
{
cell.DownRightView.isHidden = true
}
// }
// else{}
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if isOpen[indexPath.section] == true
{
self.isOpen[indexPath.section] = false
let section = IndexSet.init(integer: indexPath.section)
tableView.reloadSections(section, with: .top)
}
else
{
self.isOpen[indexPath.section] = true
let section = IndexSet.init(integer: indexPath.section)
tableView.reloadSections(section, with: .bottom)
}
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 60
}
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 90
}
已解决: 这里有一个很大的问题!!
例如,我们在表视图中有四个部分,并且用户选择数字2。一旦用户选择了数字2,部分3和4就会消失!
为澄清起见,所选部分数量更多的部分将消失!
有人对我有什么想法吗?
此错误仍然存在: 谁能帮忙!!!我被卡住
由于未捕获的异常“ NSInternalInconsistencyException”而终止应用程序,原因:“无效的更新:第1节中的行数无效。更新(2)之后现有节中包含的行数必须等于行数该部分包含在更新(0)之前,加上或减去从该部分插入或删除的行数(已插入1,已删除0),以及加上或减去移入或移出该部分的行数(移入0) ,0移出)。
与错误相关的json
[
{
"totalValue" : 11,
"units" : [
{
"unitName" : "jack",
"debit" : 11,
"unit" : 1
},
{
"unitName" : "jack1",
"debit" : 11,
"unit" : 2
}
],
"billType" : "glocery",
"billDate" : "1998\/08\/20",
"billId" : 29049
}
答案 0 :(得分:0)
将插入和删除操作从应该解决该问题的for循环中删除