更新到Xcode8后,以下代码不再起作用
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
let cell = collectionView.superview!.superview as! UITableViewCell
let table = cell.superview!.superview as! UITableView
let indexPath = table.indexPath(for: cell)
现在indexPath的值总是为零。 有什么想法吗?
答案 0 :(得分:0)
我用
替换最后一行解决了这个问题C++