Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 2 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
Your goal is to make an application that resembles the following

###Features:

* The user can enter their location (lat, lng)
* **IMPORTANT** The location entered by the user must be stored in `NSUserDefaults` so that they don't have to re-enter it the next time the app launches.

* Pull weather data from http://forecast.io. You can use **8040fc5b15adaaafabbe7de9c3ff5458** as your API key or you can get your own. Each API key can make 1000 free requests per day.

> https://api.forecast.io/forecast/APIKEY/LAT,LNG

* Parse the JSON in a way that you feel is appropriate for handling the data. There's no "right" way to do this so use your judgement.

* You need to create a custom table view cells that is visually similar to the one in the reference provided.
* On the left is the day of the week. You can find some example code at the following gist:
* In the middle is the icon representing the weather for that day. These icon names are provided by the API. The images themselves are already in your assets bundle.
* On the right is the tempurature (high - low)

* When you tap on a cell, the application should navigate the user to a detail page where they can view more information about that day's weather.
# Basic Weather
Basic Weather is an application that allows the user to see the weather, being pulled from the forecast.io API, for the upcoming days based on a given set of coordinates.

![image](https://github.com/accesscode-2-2/unit-2-assessment/blob/master/images/assessment.gif?raw=true)
24 changes: 24 additions & 0 deletions unit-2-assessment/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
PODS:
- AFNetworking (3.0.0-beta.1):
- AFNetworking/NSURLSession (= 3.0.0-beta.1)
- AFNetworking/Reachability (= 3.0.0-beta.1)
- AFNetworking/Security (= 3.0.0-beta.1)
- AFNetworking/Serialization (= 3.0.0-beta.1)
- AFNetworking/UIKit (= 3.0.0-beta.1)
- AFNetworking/NSURLSession (3.0.0-beta.1):
- AFNetworking/Reachability
- AFNetworking/Security
- AFNetworking/Serialization
- AFNetworking/Reachability (3.0.0-beta.1)
- AFNetworking/Security (3.0.0-beta.1)
- AFNetworking/Serialization (3.0.0-beta.1)
- AFNetworking/UIKit (3.0.0-beta.1):
- AFNetworking/NSURLSession

DEPENDENCIES:
- AFNetworking (= 3.0.0-beta.1)

SPEC CHECKSUMS:
AFNetworking: 1100906802d9479aa0949e8e2cbc1d4e6beba327

COCOAPODS: 0.38.2

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading