1

在 UITableViewCell 的一个按钮内,我有这个功能,它可以自动滚动到下一个单元格。

var tableView = self.superview?.superview

    let point = sender.convertPoint(CGPointZero, toView : tableView)
   let indexPath = tableView.indexPathForRowAtPoint(point)!

    if indexPath.row < tableView.numberOfRowsInSection(indexPath.section) {
        let newIndexPath = NSIndexPath(forRow:indexPath.row + 1, inSection:indexPath.section)
        tableView.scrollToRowAtIndexPath(
            newIndexPath, atScrollPosition:.Top, animated: true)
    }

我有一个错误:“让 indexPath = tableView.indexPathForRowAtPoint(point)!” 说:“表达的类型是模棱两可的,没有更多的上下文”

你知道如何解决它吗?我想将该代码保留在我的 UITableViewCell 中。

非常感谢

4

1 回答 1

0

转换superview返回的值

var tableView = self.superview?.superview as! UITableView
于 2015-07-25T20:38:16.360 回答