我需要展开和折叠行。单击标题时,调用方法 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);
}
实际上我明白了: