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 Adding Instance Methods

Zandy Woodruff-Hall
Zandy Woodruff-Hall
2,778 Points

Method / Object Oriented Swift 3 Quiz

Not sure what is wrong with my code here. Also if anyone else has a more concise solution that follows the video's teaching that would be of enormous help!

structs.swift
struct Person {
    let firstName: String
    let lastName: String

    func fullName() -> String {

    return "/(firstName) /(lastName)"

    }  

}

let myName = Name(firstName: "Z", lastName: "y")
let results = myName.fullName()

1 Answer

  • Notice how your struct is called "Person", but when you initialize it to the constant myName you call it "Name".
  • For string interpolation to work the you have to use an inverted dash ( \ ), like this : return "(firstName) (lastName)"

Hope I helped!