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 Protocols in Swift Protocol Basics Declaring a Protocol

david cole
david cole
2,397 Points

Broken code challenge?

My code, the declaration of a protocol with the name and age properties, is failing to pass the "check work" routine. I'm pretty sure it's exactly what it needs to be...

protocol User { var name: String {get} var age: Int {get set} }

it's complaining that I do not have a property named "name" of type String. I believe this is bugged. Thanks

protocols.swift
protocol User {
  var name: String {get}
  var age: Int {get set}
}

1 Answer

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

If you add a space before and after the get set key words you will pass.

protocol User {
  var name: String { get }
  var age: Int { get set }
}

It’s written like this in the Swift documentation, haven’t figured out why.