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 trialCiaran Wood
Courses Plus Student 6,787 PointspostDescription
I have problem getting this to work. struct Tag { let name: String } struct Post { let title: String let author: String let tag: Tag init (title: String, author: String) { self.title = title self.author = author self.tag = Tag(name: "Swift") } func description() -> String { let p1 = "(title) by (author). Filed under (self.tag)" return p1
}
}
//let firstPost = Post(title: "iOSDevelopment", author: "Apple", Tag(name: "Swift")
let firstPost = Post(title: "OSDevelopment", author: "Apple")
let postDescription = firstPost.description()
struct Tag {
let name: String
}
3 Answers
Safwat Shenouda
12,362 PointsHi Claran, Two minor changes needed in this line as below: add \ and use self.tag.name
let p1 = "\(title) by \(author). Filed under \(self.tag.name)"
I hope that helps.. Safwat
Ciaran Wood
Courses Plus Student 6,787 PointsThank you so much!
Ciaran Wood
Courses Plus Student 6,787 Points/* struct Tag { let name: String } struct Post { let title: String let author: String let tag: Tag init (title: String, author: String) { self.title = title self.author = author self.tag = Tag(name: "Swift") } func description() -> String { let p1 = "(title) by (author). Filed under (self.tag.name)" return p1
}
} /* let firstPost = Post(title: "iOSDevelopment", author: "Apple")
let postDescription = firstPost.description()
I tried this and it worked perfectly in xCode but not in the code challenge. The code challenge checker suggests it won't compile. I'm new to this so i don't know how to show the code correctly to you in my message which is why it left out all the /'s.