Top-notch video tutorials for Swift developers

Thousands of developers use NSScreencast to stay on top of iOS development.

ExxonMobil
Venmo
Thoughtbot
The Working Group
Medium

Updated Regularly

Bite-sized videos on iOS development.

The iOS landscape is large and changes often. With short, bite-sized videos released on a steady schedule, NSScreencast helps keep you continually up to date.

Up to date with Xcode 15 and iOS 17

We cover the latest and greatest to get you up to speed quickly.

UIKit, SwiftUI, SwiftData, and macOS

In our catalog you'll find a wide variety of topics and UI frameworks.

Swift Language

Increase your knowledge of the Swift language and take advantage of new Swift language features as they are developed.

High Quality Videos

We stress the details. Each screencast is carefully produced in HD quality.

Short and Focused

We don't want to waste your time. Most videos are between 10 and 20 minutes long.

Any Device

Stream on the web or use our native apps for iOS or the tv.

Team Plans

Get NSScreencast for your whole team. Discounts start at 5 seats
Steven Tolton

Have I mentioned lately how awesome NSScreencast is? No? Worth the subscription. Check it out if you’re an iOS developer. Or even if you’re not and you want an example of how to do coding screencasts well.

Foster Bass

Got tired of dead-end googling so I checked to see if @NSScreencast had covered what I was looking for. Of course he had, 4 years ago. Should have checked there first.

Aijaz Ansari

One 13-minute episode of @NSScreencast just paid for the yearly subscription fee in amount of time saved. Do it.

Sam Soffes

Seriously great stuff even for seasoned developers. I’ve learned a good amount from Ben’s videos.

James Dempsey

You can really expand your development horizons in just a few minutes a week with NSScreencast.

Alexis Gallagher

Random PSA for iOS developers: @NSScreencast is a great resource, and worth every penny. It’s high quality, practical, and honest.

Nate Armstrong

Can’t say enough good things about @NSScreencast There is gold in the Road Trip DJ Series.

Karl Oscar Weber

I just reuppped my subscription to @NSScreencast. [An] indespensible resource if you’re into iOS or Mac Development.

Marcus Ziadé

Just finished @NSScreencast series on Modern CollectionViews. Strongly recommended. Programmatic UI, nicely structured code, easily approachable explanation style. 👌

Showing episodes 529 - 552 of 581 in total
  • RestKit - Object Manager

    #53

    This episode covers some additional pieces of RestKit, abstracting network requests even further by providing a route & mapping for a given object and utilizing RKObjectManager to perform the work for us. Instead of using a live API, we verify the behavior using SenTestingKit.

  • RestKit - CoreData

    #52

    In this episode we continue on our exploration of RestKit, this time with a focus on CoreData. It turns out to be fairly easy to change our existing code to support saving the responses into NSManagedObject classes in a database.

  • Intro to RestKit: Mapping

    #51

    RestKit is a framework that aims to simplify the "plumbing" of your application to allow you to focus on your core features. In this screencast, I focus on fetching JSON from an API and mapping it onto our own objects using RestKit's mapping features.

  • Custom Cells

    #50

    In this episode we design a custom table view cell including a designing custom repeatable background & highlight images in Photoshop, dynamically layout out the labels, as well as observing a tricky problem regarding cell animations. We also take a look at how to profile the graphics performance (FPS) using Instruments.

  • Slide Out Menus

    #49

    In this episode I cover a few of the available 3rd party libraries for implementing a slide to reveal menu, similar to what you see in the Facebook application.

  • Code Snippets

    #48

    In this episode we examine Xcode's code snippets feature and how it can speed up your day to day development. We also take a look at a handy gem for easily installing code snippets you've found online.

  • Gesture Recognizers

    #47

    Detecting touches used to be a chore. Thanks to the UIGestureRecognizer family of classes, detecting touches & gestures is a breeze. In this episode we implement a Photo Table where you can add photos, move them around, as well as pinch & rotate.

  • Fun with UICollectionView

    #46

    In this episode we dive into UICollectionView for displaying ... collections of views. We start by looking at how to tweak the builtin UICollectionViewFlowLayout as well as extending to create an interesting custom variation.

  • Validating IAP Receipts

    #45

    Here we continue on with our In App Purchase example, but this time we take the receipt given to us by StoreKit and we send it to our custom rails server to be validated with Apple.

  • In App Purchases

    #44

    In this episode I dive into the world of IAP (In App Purchases) using StoreKit. I start by creating a product in iTunes Connect, retrieving that product on the device, and emulating the App Store buy confirmation buttons using a handy CocoaPod.

  • AVAudioPlayer

    #43

    The iOS SDK has numerous ways to play back audio. In this episode we take a look at how to play a local mp3 file using AVAudioPlayer. We add play/pause support, volume, and show the song progress in a UISlider. We finish it off by monitoring the audio levels using a custom view.

  • Retrying HTTP Requests

    #42

    We pick up where we left off in Episode 41 and implement a mechanism to automatically detect expired authentication tokens, re-login the user automatically, and retry the original request. This takes a bit of refactoring and use of blocks, but allows for transparent HTTP retries.

  • Authentication with AFNetworking

    #41

    Many APIs require some sort of authentication. In this episode, we explore the use of an API that authenticates with a username and password, and returns an authenticated token that has an expiration date. You'll see use of AFNetworking to deal with the request, attaching the authenticated token as an HTTP Header to outgoing requests, as well as the use of SSKeychain to abstract away the lower level Keychain API.

  • Shine Effect

    #40

    Creating an animated shine effect, similar to what you see on the slide to unlock screen on the iPhone. In this episode, I show how to achieve this effect with CALayers, layer masks, and a CABasicAnimation.

  • Smart JSON Parsing

    #39

    Parsing JSON responses into Objective-C Objects can be tedious. In this episode, we start development on a smart JSON parsing class that can alleviate some of the mundane work usually required for this functionality.

  • Class Introspection

    #38

    In this episode I create an application to introspect classes to list out methods and instance variables using Objective-C's runtime features. Bonus: Can you spot the memory leak?

  • Xcode Tips & Tricks

    #37

    In this episode I cover some of the Xcode tips & tricks that help me be effective. I cover many keyboard shortcuts for keeping my hands on the keyboard, as well as a couple of useful plugins for Xcode for Vim key bindings and picking colors.

  • Searching in UITableView

    #36

    Using UISearchDisplayController you can quickly add searching behavior to a UITableView. In this episode we start off with a CoreData model of products, displayed in custom UITableViewCells and add search to filter the products in the table.

  • Autolayout Fun

    #35

    In this episode I dive into the complex world of auto layout. Autolayout is an important and powerful new layout system in iOS 6, but it definitely takes some practice to understand fully. Even after practicing this episode a few times I ran into a couple of snags, however I hope this intro to Autolayout provides useful.

  • Upgrading to iOS 6 and iPhone 5

    #34

    Now that iOS 6 is out, and the iPhone 5 is only a day away, it is important to update our applications to make sure there are no issues. In this episode, I convert a rudimentary application to support the taller screen of the iPhone 5 and support iOS 6.

  • Core Graphics: Polygons

    #33

    We continue our journey into Core Graphics. This week, we'll draw a polygon with a dynamic number of sides, learn how to use CGMutablePathRef, shadows, clipping paths, and a bit of math.

  • Core Graphics: Gradients

    #32

    Core Graphics is a complex topic, but can be very handy to create designs without using images, as well as maintaining resolution independence. In this episode I show how to create a couple of simple gradients using Core Graphics.

  • Posting Multi-part Forms with AFNetworking

    #31

    In this episode, I take an existing app and add the ability to post information to a server, including photo uploads. We report on the progress of the upload and configure AFNetworking to do a proper muliti-part HTTP form post. In addition, I cover how to build a standalone static TableViewController to represent a form using Storyboards.

  • Parse

    #30

    In this episode I build an app with Parse, a service that provides custom data storage, files, push notifications, a geolocation support.