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 Complex Data Structures Instance Methods

Bekzod Rakhmatov
Bekzod Rakhmatov
7,419 Points

2:20 when i called methods I did not see two parameters after putting . for ex coordinatePoint. point() is not being sho

2:20 when i called methods I did not see two parameters after putting . for ex coordinatePoint. point() is not being shown in my Xcode

Luc Bernardin
Luc Bernardin
3,726 Points

Make sure your line of code defining coordinatePoint is correct:

let coordinatePoint = Point(x: 0, y: 0)

If that line worked, then coordinatePoint. should give you the autocomplete options for x and y and point()

Huseyn Guliyev
Huseyn Guliyev
2,603 Points

Even after the answer by Luc Bernardin, my Xcode still doesn't provide me with x and y and point() options

1 Answer

Not sure why this has just appeared in my timeline - but you nee to post all your code. We can then help you.

Steve.