-
This application leverages the OpenWeatherMap API to show current weather and the weather forecast for your current location determined by Core Location.
-
This application was written with MVC and SOLID principles in mind.
class Weathers {
var _date: NSDate!
var _weatherLabel: String!
var _highTemp: String!
var _lowTemp: String!
enum DayOfWeek: Int {
case Sunday = 1, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
}
var date: String {
if _date == nil {
_date = NSDate()
}
let dateFormatter = DateFormatter()
dateFormatter.dateStyle = .long
dateFormatter.timeStyle = .none
let currentDay = Calendar.current.component(.weekday, from: _date as Date)
return "\(String(describing: DayOfWeek(rawValue: currentDay)!)), \(dateFormatter.string(from: _date as Date))"
}
var weatherLabel: String {
if _weatherLabel == nil {
_weatherLabel = ""
}
return _weatherLabel
}
var highTemp: String {
if _highTemp == nil {
_highTemp = ""
}
return "\(_highTemp!)°"
}
var lowTemp: String {
if _lowTemp == nil {
_lowTemp = ""
}
return "\(_lowTemp!)°"
}
init (weatherItem: Dictionary<String, AnyObject>) {
_date = NSDate(timeIntervalSince1970: weatherItem["dt"] as! TimeInterval)
if let weatherDict = weatherItem["weather"] as? [Dictionary<String, AnyObject>] {
_weatherLabel = weatherDict[0]["main"]! as! String
}
_highTemp = Weathers.convertTemp(currentTemp: weatherItem["temp"]?["max"] as! Double)
_lowTemp = Weathers.convertTemp(currentTemp: weatherItem["temp"]?["min"] as! Double)
}
class func convertTemp(currentTemp: Double) -> String {
return String(round(10*(1.8*(currentTemp-273)+32)/10))
}
}
Copyright [2017] [Eric Chu]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
