1
我有tableview單元格中有一些自定義視圖。當觸摸自定義視圖時,我需要存儲觸摸視圖所在單元格的indexPath.row。這是我當前如何獲取indexPath:indexPathForRowAtPoint.row對於tableView中的每個單元格總是返回零
@IBAction func bulletGroupPressed(sender: AnyObject) {
let center = sender.center as CGPoint
let indexPath = self.exercisesTableView.indexPathForRowAtPoint(center)!
self.exercisesTableView.selectRowAtIndexPath(indexPath, animated: false, scrollPosition: UITableViewScrollPosition.None)
println(indexPath.row)
}
我懷疑它做的!
上indexPath線,但我不知道它到底是什麼。爲什麼indexPath.row總是在每個單元上給我零?
就是這樣!謝謝!! – 2015-01-21 00:29:15