您好
我正在开发一个应用程序,它使用带有两个部分的tableview(而不是单选按钮)。
所以我希望这些部分像单选按钮一样。为了实现这一点,我必须在中实现“if”
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
我想使用类似的东西:if(section ==“A”)。 怎么做? 这也是使表格的各个部分表现得像不同表格的正确方法吗?
答案 0 :(得分:1)
我不知道你所说的“部分就像单选按钮一样”,而是区分tableView:didSelectRowAtIndexPath:
使用indexPath.section
中的部分:
if (indexPath.section == 0) {
// first section
} else if (indexPath.section == 1) {
// second section
}
答案 1 :(得分:1)
嗯......这听起来像是一个奇怪的设置,但无论如何,你只需使用提供的indexPath
来获得部分/行。
即:indexPath.section
将指向所选部分,indexPath.row
将指向该行。
有关更多信息,Table View Programming Guide for iOS是一个良好的开端,因为它涵盖了上述所有细节。
<强>更新强>
在突出显示多个单元格方面,我认为您需要创建自己的突出显示概念,当用户选择单元格时,您可以打开和关闭它。
也就是说,您也可以根据现有Is it possible to configure a UITableView to allow multiple-selection?问题/答案,通过UITableViewCellAccessoryCheckmark
标记所选单元格。
答案 2 :(得分:0)
您必须使用indexPath.section:
来区分表格部分
所以你的代码应该如下所示。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
{
if (indexPath.section == 0)
{
//first section
}
else if (indexPath.section == 1)
{
//second section
}
}