删除TableViewController中的行

时间:2019-06-17 12:10:27

标签: c# ios xamarin

我需要展开和折叠行。单击标题时,调用方法 handleExpandClose 。要删除行,我需要这样做:

public void handleExpandClose()
{
    var paths = new NSIndexPath[RowsInSection(TableView, 0)];
    for (int i = 0; i < paths.Length; i++)
    {
        paths[i] = NSIndexPath.FromItemSection(i, 0);
    }

    TableView.DeleteRows(paths, UITableViewRowAnimation.Fade);
}

实际上我明白了:

enter image description here

0 个答案:

没有答案