Using Swift 3 iOS iPhone App
Create a weather search application using openweathermap.org. To do this, perform the following:
- Create a free account on https://openweathermap.org and get an API key
- Use the following URL and substitute the appropriate city and API key to return results:
- https://api.openweathermap.org/data/2.5/forecast?q=CITYNNAME,us&mode=xml&appid=YOURAPIKEY
- Create a single page application that allows the user to input a city name and use services to call the above URL to retrieve a five day forecast.
- Display the result in a table view
- Save your search results so that the application displays them in the table view the next time the application begins.