我正在尝试设置一个 UIButton,单击它会在我的 UICollectionView 中添加一个新部分。我在网上搜索了一些示例,但可以使它们起作用。以下是看起来不错但仍然不适合我的答案之一。
我错过了什么吗?谁能提供一些帮助?提前谢谢了!
func buttonAction(sender:UIButton!) {
var paths = [NSIndexPath]()
paths.append(NSIndexPath(forRow: 0, inSection: 0))
self.table.insertItemsAtIndexPaths(paths)
}