如何通过表格的一个部分导航到下一个视图?

时间:2010-10-25 11:30:02

标签: ios4

我有一个有两个部分的tableview。我想通过单击一个部分导航到下一个视图。其他部分不应该转到下一页。 有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

在选择处理程序中区分这两种情况,所以你会有类似的东西:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    if (indexPath.section == 0){
         //Some code to go to the next page
    } 
    else{
         // Some code not going to another page
    }
}