Alright, so just to start off, heres my code:
import UIKit import ForecastIO class Weather { var temp: Float var condition: String var wind: Fl
You have two options, declare the properties as optionals, or initialize them with a default value (this means they will be non-optionals)
var temp: Float? var condition: String? var wind: Float? var precip: Float?
or
var temp: Float=0 var condition: String="" var wind: Float=0 var precip: Float=0