我在Table View中有一个Collection View。我的表视图目前有5个部分,但集合视图仅激活此功能的三倍:
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
并且表格视图激活此功能五次:
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
为什么会这样?
如果您需要示例,请提出要求。