当在ios中点击节标题时,折叠展开节中的行

时间:2013-03-28 06:43:07

标签: iphone ios uitableview

我的应用程序中有一个分段表视图,但是当我点击此部分时,我想折叠/展开部分中的行。

我想知道如何实施的步骤。

数据作为dictinary从JSON文件导入,我有故事板界面构建器。

我希望在点击此部分时显示/隐藏特定部分的行。

我在等你的回答。

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码行。

添加行

        NSIndexPath *tmpIndexpath=[NSIndexPath indexPathForRow:0 inSection:Sender.tag];
        [tbl_Qus insertRowsAtIndexPaths:[NSArray arrayWithObjects:tmpIndexpath, nil] withRowAnimation:UITableViewRowAnimationFade];

删除行

        NSIndexPath *tmpIndexpath=[NSIndexPath indexPathForRow:0 inSection:Sender.tag];
        [tbl_Qus deleteRowsAtIndexPaths:[NSArray arrayWithObjects:tmpIndexpath, nil] withRowAnimation:UITableViewRowAnimationFade];

您也可以从此link下载教程。