特定UITableViewCell的indexPath始终为nil

时间:2016-10-02 10:06:13

标签: uitableview uicollectionview xcode8 indexpath

更新到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的值总是为零。 有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我用

替换最后一行解决了这个问题
C++