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 trialGiorgos Karyofyllis
21,276 PointsHow to pass an argument of type struct?
I have defined two structs, Tag and Post. The post struct has an attribute "tag" of type "Tag". I want to create an instance of Post and pass the argumenet of type Tag.
struct Tag {
let name:String
}
struct Post {
let title:String
let author:String
let tag:Tag
}
//How to pass the argument of type Tag??
let firstPost = Post(title: "A title", author: "The author", tag: )
1 Answer
Helgi Helgason
7,599 PointsCreate an init method for the Post struct and create an instance of Tag struct inside of it, assigning the instance the name parameter!
struct Post {
var title:String
var author:String
var tag:Tag
init(title: String, author: String, name: String) {
self.title = title
self.author = author
self.tag = Tag(name: name)
}