我正在尝试使用TableView来选择项目,但如果我点击该项目则没有任何反应。我已经尝试用这个主题的其他问题的所有答案来修复它。 有人可以帮帮我吗?
这是我的代码:
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
print("Working")
let eventItem = eventItems![indexPath.row] as! Event
(UIApplication.sharedApplication().delegate as! QRCodeViewController).selectedIDfunc(eventItem.id as! Int)
}