How to passing Date between two Storyboard with didSelectRowAtIndexPath(in Swift)?
问题 I need to use didSelectRowAtIndexPath to pass my current Cell after Searching (this is the only way that I found), but how can I pass this cell name to the SecondViewController? override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { if(tableView == self.searchDisplayController!.searchResultsTableView){ if let cell: UITableViewCell = tableView.cellForRowAtIndexPath(indexPath){ if let cellTextLabel: UILabel = cell.textLabel{ let cellSelected =