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 Object-Oriented Swift 2.0 Complex Data Structures Methods

Raphael Reiter
Raphael Reiter
6,820 Points

nothing in return?

hey guys,

So we finished writing the code. We created our struct, our functions, our loops, and returned the results.

Now i dont understand why the results dont appear anywhere. shouldnt we be getting x1y1 x1y2 x1y3 x2y1 x2y2 x2y3 etc etc in the debug area?

heres the code:

let x1 = 0 let y1 = 0

let coordinate1: (x: Int, y: Int) = (0,0) coordinate1.x

struct Point { let x: Int let y: Int

func surroundingPointsWith(withRange range: Int = 1) -> [Point] {
    var results: [Point] = []
    for xCoord in (x-range)...(x+range) {
        for yCoord in (y-range)...(y+range) {
            let coordinatePoint = Point(x: xCoord, y: yCoord)
            results.append(coordinatePoint)
        }
    }
    return results
}

}

Thanks for your help !

1 Answer

Roberto Alicata
PLUS
Roberto Alicata
Courses Plus Student 39,959 Points

The method surroundingPointsWith is only declared, but it isn't executed.