Skip to content

Instantly share code, notes, and snippets.

@corosukeK
Last active September 17, 2015 09:04
Show Gist options
  • Save corosukeK/932b1408e69233b8c713 to your computer and use it in GitHub Desktop.
Save corosukeK/932b1408e69233b8c713 to your computer and use it in GitHub Desktop.
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
let selectedCell = tableView.cellForRowAtIndexPath(indexPath)
tableView.visibleCells.forEach { (cell) -> () in
cell.accessoryType = .None
}
selectedCell?.accessoryType = .Checkmark
tableView.deselectRowAtIndexPath(indexPath, animated: true)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment