敲代码时遇到了这个问题,别偷懒,写下来备查.
当你在IB中对TableView中的accessory(注意,我说的是cell中的accessory,而不是cell)创建segue时,如果你在VC中同时实现以下3个方法,请问调用的次序是神马!?
//1
func tableView(_ tableView: UITableView, accessoryButtonTappedForRowWith indexPath: IndexPath)
//2
override func shouldPerformSegue(withIdentifier identifier: String, sender: Any?) -> Bool
//3
override func prepare(for segue: UIStoryboardSegue, sender: Any?)
答案是:2,1,3
如果你使用shouldPerformSegue,那么你在该方法里是无法取到segue本身的,你必须配合prepare方法才可以.
如果你需要在prepare方法里取得被按下accessory对应的cell的索引,那么你不可以使用tableView.indexPathForSelectedRow,因为你segue绑定的是cell的accessory而不是cell,所以你取得的返回值是nil.
要想解决以上问题非常简单prepare第二个参数sender就是了:
let cell = sender as! UITableViewCell
let selectedRow = tableView.indexPath(for: cell)!.row
如果你是自定义cell的accessory按钮,那么你可能回用得着下面这个方法:
tableView.indexPathForRow(at: point)
下面是等效的objC的代码,留个念想:
NSSet *touches = [event allTouches];
UITouch *touch = [touches anyObject];
CGPoint currentTouchPosition = [touch locationInView:self.contactsTableView];
时间: 2024-10-05 04:43:12