Alright, so just to start off, heres my code:
import UIKit import ForecastIO class Weather { var temp: Float var condition: String var wind: Fl
For me, it's because I didn't call super.init() in the initializer.
super.init()
class AnObject: NSObject { override init() { // super.init() let _: ()-> (Void) = { print(String(describing: self)) } } }