我正在尝试在Xamarin中开发一个应用程序,我需要扩展tableview单元格,但我对此一无所知。任何人都可以告诉我在Xamarin.ios中实现可扩展/可折叠表格单元吗?
答案 0 :(得分:0)
您可以参考几个示例和教程,您也可以尝试自己动手:
tableView.InsertRows(new NSIndexPath[] { }, UITableViewRowAnimation.Automatic);
tableView.DeleteRows(new NSIndexPath[] { }, UITableViewRowAnimation.Automatic);
您可以查看这些帖子了解更多详情:
TableView expanding and collapsing section with animation on touch
Create expandable tableview in Xamarin.iOS?
样品:
https://github.com/b099l3/StackOverflow/tree/master/ExpandableTableView
https://github.com/TheEightBot/EightBot.AutoExpandAndCollapse
https://github.com/brminnick/ExpandableList
https://github.com/iSofTom/STCollapseTableView