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)
}
「let indexPath = tableView.indexPathForRowAtPoint(point)!」という行にエラーがあります。発言: 「表現のタイプは文脈がないとあいまいです」
それを修正する方法はありますか?そのコードを UITableViewCell 内に保持したいと思います。
どうもありがとう