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 Swift Enums and Structs Structs and their Methods Initializers

Alex Rovin
Alex Rovin
1,726 Points

Is this not right?

I have tried many things and this is what i think works best but it doesnt

struct.swift
struct Expense {
    var description: String
    var amount: Double = 0.0 
    init (des: String) {
      self.description = des
    }
}

1 Answer

Reed Carson
Reed Carson
8,306 Points

The code is sound but it doesn't work because the directions specify the parameter must be named "description", naming it "des" will not work for the challenge.

This is good practice because using shorthand to declare objects will make it really hard for you to read your code later on, and almost impossible for others to read it. Its really important to use clear names for your objects even if it means typing a few extra letter. I used shorthand all over and first and it just ended up making it harder to code. When you have tons of variables and hundreds of lines (in a small app) it gets real confusing real fast.