Skip to content

Instantly share code, notes, and snippets.

@michaeleisel
Created December 19, 2014 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaeleisel/d545c3c8a2278cbc97b5 to your computer and use it in GitHub Desktop.
Save michaeleisel/d545c3c8a2278cbc97b5 to your computer and use it in GitHub Desktop.
class Controller {
var defaultDate: NSDate { return NSDate() }
var currentDate: NSDate
func init() {
currentDate = defaultDate // causes error, because self doesn't exist yet
super.init()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment