I am more than frustrated as it has wasted lot of my time. I don't know why allowsMultipleSelection is not working in my TableView? What all things has to be done to make it work, I did but still no result. Please take a look on my code and kindly let me know the issue.
override func viewDidLoad()
{
super.viewDidLoad()
// Do any additional setup after loading the view.
self.participantsTableView.allowsMultipleSelection = true
}
if tableView == participantsTableView
{
var cell = tableView.cellForRowAtIndexPath(indexPath)!
if cell.accessoryType == UITableViewCellAccessoryType.Checkmark
{
cell.accessoryType = UITableViewCellAccessoryType.None
}
else
{
cell.accessoryType == UITableViewCellAccessoryType.Checkmark
}
self.participantsTableView.reloadData()
}
You need to implement delegate method
tableView:didDeselectRowAtIndexPath:
and update cell's accessoryType intableView:cellForRowAtIndexPath:
.like this: