Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Emayciekay Mack
1,476 PointsKeep rows selected upon dismissing and returning to UITable ViewController.
When I make a selection and dismiss the table view controller, the selection is no longer there when I return. I set clearsSelectionOnViewWillAppear to false inside viewWillAppear but that didn't work, someone on StackOverflow mentioned doing the following:
override func viewWillAppear(animated: Bool) {
self.clearsSelectionOnViewWillAppear = false
let indexPaths = self.drugTableView.indexPathsForSelectedRows()
self.tableView.selectRowAtIndexPath(indexPath: indexPaths, animated: true, scrollPosition: UITableViewScrollPosition.None)
}
but that won't compile due to this error
Cannot convert the expression's type '(indexPath: [AnyObject]?, animated: BooleanLiteralConvertible, scrollPosition: UITableViewScrollPosition)' to type 'BooleanLiteralConvertible'
Could someone help me out with this one?
Thank you.