func tableView(tableView: UITableView, didDeselectRowAtIndexPath indexPath: NSIndexPath)
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath)
虽然二者意思相反,但二者在处理单元格跳转时功能类似.
didDeselect在页面跳转之后,不能正确的将数据进行正向传值,仅仅是随机或者是错位传值, 甚至无法传值.
因此, 在页面跳转发生错误是第一个应检查didSelectRowAtIndexPath 是否写对
网友评论