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

iOS

Describe use of ??

I had some recent code which I had some issues with. I was getting the error: Cannot subscript value of type 'String' with an index of type 'NSIndexPath'

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]
            }

The following change using '??' corrected the problem.

    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 ?? ""
            }

Can someone please describe to me why this corrects the problem.

1 Answer

AR Ehsan
AR Ehsan
7,912 Points

So technically what's going on here is that it's checking if wod.description is not nil, it will return wod.description. If it's nil, it will return "" (empty strings).