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 trialWilliam Liu
1,516 PointsWhat do I need to add or change?
I don't know where the type "Tag" is being mentioned in this track.
Maybe "Tag" is referring to the provided struct, but then again I've forgotten what I should do in such a case.
Thanks in advance for your help!
struct Tag {
let name: String
}
struct Post {
let title: String
let author: String
let tag: Tag
}
let firstPost = Post(title: "x", author: "y", tag: "z")
2 Answers
Angel Caro
11,831 PointsThis question has been asked many times as you can see here: https://teamtreehouse.com/community/issue-with-task-2-of-swift-recap-1-code-challenge-in-build-a-simple-iphone-app-with-swift-20. It helps to look for the question before asking it, many times someone else had the same question and it has been answered already allowing to continue without waiting for an answer.
William Liu
1,516 PointsThanks for the hint as well as the link!