Is it possible to allow didSet to be called during initialization in Swift?

If you use defer inside of an initializer, for updating any optional properties or further updating non-optional properties that you’ve already initialized and after you’ve called any super.init() methods, then your willSet, didSet, etc. will be called. I find this to be more convenient than implementing separate methods that you have to keep track of … Read more