2

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

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

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

当点击此部分时,我想显示/隐藏特定部分的行。

我等着你的回答。

4

1 回答 1

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];

您也可以从此链接下载教程。

于 2013-03-28T06:47:53.323 回答