ios-nd-networking
ios-nd-networking copied to clipboard
Resources for Udacity's iOS Networking with Swift course.
After making the change to cancel the search task, you probably noticed some annoying warnings like this. ``` Result of call to 'taskForGETRequest(url:responseType:completion:)' is unused ``` Ever since we added...
Remember how annoying it is to log in every time you run the app? It would be great if the user could stay logged in. While you could go the...
Many apps using tables will allow you to manage the list directly from the table view. As a simple new feature, we can do this for the watchlist and favorites...
When we get search results, or get the watchlist/favorites, the response we get back, and the `MovieResults` struct we decode into has properties for `page`, `per_page`, and `total pages`. How...
The starter code for the Movie Manager, has a bug where a stray dash (`-`) appears for movies without a release year (see last result).  The fix just involves...