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

Question regarding Challenge Task 1

I don't understand what part of this code is wrong? The method "fullName ()" was created and should technically work.

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

    func fullName(firstName: String, lastName: String) -> String {
      let name = firstName + " " + lastName
      return name
    }
}

let herName = Person(firstName: "lol", lastName: "jack") 
herName.fullName()

1 Answer

Magnus Hållberg
Magnus Hållberg
17,232 Points

You have written a method that needs to be initialized, that’s the first problem. The second one is that you need to address “self” to access the properties from the struct. The method could look like this.

func fullName() -> String {
  return “\(self.firstName) \(self.lastName)
}

I see, thank you!