我的应用程序中有一个分段表视图,但是当我点击此部分时,我想折叠/展开部分中的行。
我想知道如何实施的步骤。
数据作为dictinary从JSON文件导入,我有故事板界面构建器。
我希望在点击此部分时显示/隐藏特定部分的行。
我在等你的回答。
答案 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下载教程。