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
Brandon Mahoney
iOS Development with Swift Techdegree Graduate 30,149 PointsCannot subscript value of type 'String' with an index of type 'NSIndexPath'
In the following code I am trying to populate a detail view from a tableView but keep getting that NSIndexPath error. Without the 'if let indexPath' and [indexPath] it only returns the first section in the dictionary.
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
let wod = FilteredWodList[index]
if segue.identifier == "showBenchmarkDetail" {
let controller = segue.destinationViewController as? BenchmarkWODDetailView
if let indexPath = self.tableView.indexPathForSelectedRow
{
controller?.nameText = wod.name![indexPath]
controller?.descriptionText = wod.description![indexPath]
controller?.exerciseText = wod.exercise![indexPath]
}
1 Answer
Brandon Mahoney
iOS Development with Swift Techdegree Graduate 30,149 PointsCorrected the problem with the code below.
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if segue.identifier == "showBenchmarkDetail" {
let controller = segue.destinationViewController as? BenchmarkWODDetailView
if let indexPath = self.tableView.indexPathForSelectedRow
{
let wod = FilteredWodList[indexPath.row]
controller?.nameText = wod.name ?? ""
controller?.descriptionText = wod.description ?? ""
controller?.exerciseText = wod.exercise ?? ""
}