ios-nd-networking icon indicating copy to clipboard operation
ios-nd-networking copied to clipboard

Resources for Udacity's iOS Networking with Swift course.

Results 15 ios-nd-networking issues
Sort by recently updated
recently updated
newest added

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...

moviemanagerchallenge

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...

moviemanagerchallenge

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...

moviemanagerchallenge

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...

moviemanagerchallenge

The starter code for the Movie Manager, has a bug where a stray dash (`-`) appears for movies without a release year (see last result). ![image](https://user-images.githubusercontent.com/11902470/48291914-1d95cb80-e446-11e8-8447-97482663221d.png) The fix just involves...

moviemanagerchallenge