下面的代码正确返回单元格: func findSuperView(sender:UIButton!) - UITableViewCell { var superView : UIView? = sender.superview var foundSuperView : UITableViewCell! while superView != nil foundSuperView == nil { if let cell = s
func findSuperView(sender:UIButton!) -> UITableViewCell { var superView : UIView? = sender.superview var foundSuperView : UITableViewCell! while superView != nil && foundSuperView == nil { if let cell = superView as? UITableViewCell { foundSuperView = cell break } else { superView = superView?.superview } } return foundSuperView }
但是为了在tableview中找到indexpath,它会崩溃:
var indexPath : NSIndexPath = self.table .indexPathForCell(findSuperView(sender))! println("Section (indexPath)")
我尝试了另一种方式,但没有成功:
var button : UIButton = sender as UIButton; var touch: UITouch = events .allTouches()?.anyObject() as UITouch var location : CGPoint = touch.locationInView(self.table) var indexPath : NSIndexPath = self.table.indexPathForRowAtPoint(location)!我不知道是否有一种简单的方法可以做到这一点. (编辑:实际上有.看看@ mustafa的第二个解决方案.)解决方法是将按钮的标签设置为cellForRowAtIndexPath中的indexPath.row,然后您只需访问按钮的标签即可找出它所属的行.
警告:此变通方法很脆弱.如果允许在表中添加或删除行而不调用tableView.reloadData(),它将无法正常工作.看看@ mustafa的解决方案,它更加强大.