更新到 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 的值始终为零。有任何想法吗?