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

Johnny Nguyen
Johnny Nguyen
3,875 Points

when he creates a function(method) in struct, why return "[Point]" instead of "[String]" ?

Point is not a string so how can Xcode see it as a String??

Allan Clark
Allan Clark
10,810 Points

this doesnt seem to have attached to a video or exercise, could you provide a link to the video so I can have some more context to this question?

Johnny Nguyen
Johnny Nguyen
3,875 Points

func points(inRange range: Int = 1) -> [Point] { var results: [Point] = []

1 Answer

Alex Busu
PLUS
Alex Busu
Courses Plus Student 11,819 Points

Hey Allan, because an object is a lot more powerful than a string. You can always use strings or have things displayed as strings but manipulating them and extracting different types of values from there is very hard.