gpt4 book ai didi

xcode - 如何引用 NSIndexPath?

转载 作者:搜寻专家 更新时间:2023-11-01 05:58:56 24 4
gpt4 key购买 nike

在我的 TableView 中,有 4 个部分,第一部分有 3 行,第二部分有 2 行,第三部分有 2 行,第四部分有 1 行。

按下时如何引用这些行?这是我目前使用的代码。请帮忙

 override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
println("\(indexPath)")
switch indexPath {

case 0.1, 0.2, 0.3:
println("Row 1, 2, or 3 in section 1")

case 1.1:
println("Row 1 in section 2")

case 1.2:
println("Row 2 in section 2")

case 2.2:
println("Row 2 in section 3")

case 3.1:
println("Row 1 in section 4")

default:
println("Default")

}

}

最佳答案

我建议使用元组:

switch (indexPath.section, indexPath.row) 
{
case (0,1), (0,2), (0,3):
print("Row 1, 2, or 3 in section 1")
case (1,1):
print("Row 1 in section 2")
case (4, _):
print("any row in section 5")
default:
break
}

(下划线是一个“无关紧要”的占位符,可以匹配该位置的任何值。)

这样每个案例的语法都很好并且易于阅读。

关于xcode - 如何引用 NSIndexPath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29639332/

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