Build a Real iOS App From Scratch: A Free Workshop for Swift Beginners
Feb 21 2024 · Article (2 mins)
Watch this webinar on demand and, in less than an hour, you’ll learn to build a real, functional iOS app.
Build a Real iOS App From Scratch: A Free Workshop for Swift Beginners
Watch this webinar on demand and, in less than an hour, you’ll learn to build a real, functional iOS app.
iOS & Swift
iOS Concurrency with GCD & Operations
Sep 12 2023 · Video Course (2 hrs, 1 min)
Learn how to add concurrency to your apps! Keep your app’s UI responsive to give your users a great user e...
more
iOS Concurrency with GCD & Operations
Learn how to add concurrency to your apps! Keep your app’s UI responsive to give your users a great user experience, and learn how to avoid common concurrency problems, like race condition, priority inversion and deadlock.
Multiple Domains
Must-Watch Sessions From WWDC ’23
Jun 29 2023 · Article (15 mins)
Ensure you’re up-to-date on the most important announcements from WWDC ’23 with this round-up of important se...
more
Must-Watch Sessions From WWDC ’23
Ensure you’re up-to-date on the most important announcements from WWDC ’23 with this round-up of important sessions for developers to watch!
iOS & Swift
Swift Result Builders: Getting Started
Jun 12 2023 · Article (20 mins)
Adding @resultBuilder in Swift 5.4 was important, but you might have missed it. It’s the secret engine behind...
more
Swift Result Builders: Getting Started
Adding @resultBuilder in Swift 5.4 was important, but you might have missed it. It’s the secret engine behind the easy syntax you use to describe a view’s layout: @ViewBuilder. If you’ve ever wondered whether you could create custom syntax like that in your projects, the answer is yes! Even better, you’ll be amazed at how […]
iOS & Swift
Apple Vision Pro: A New Era or AR Rabbit Hole?
Jun 7 2023 · Article (10 mins)
Apple has just announced its Vision Pro spatial computing system. Is it destined to become the next must-have...
more
Apple Vision Pro: A New Era or AR Rabbit Hole?
Apple has just announced its Vision Pro spatial computing system. Is it destined to become the next must-have tech tool?
iOS & Swift
Modern Concurrency: Beyond the Basics
Oct 20 2022 · Video Course (3 hrs, 22 mins)
Build on your knowledge of async/await, tasks and asynchronous sequences to use concurrent tasks in safe, ...
more
Modern Concurrency: Beyond the Basics
Build on your knowledge of async/await, tasks and asynchronous sequences to use concurrent tasks in safe, performant and predictable asynchronous apps. Learn how to create and use custom AsyncStream sequences, continuations, task groups and custom actors.
iOS & Swift
Modern Concurrency: Getting Started
Oct 18 2022 · Video Course (1 hr, 48 mins)
Learn how to use Swift’s new native model for writing safe, efficient concurrent code.
Create safe, perfor...
more
Modern Concurrency: Getting Started
Learn how to use Swift’s new native model for writing safe, efficient concurrent code.
Create safe, performant and predictable asynchronous apps using these
Swift concurrency features:
Saving Data in iOS
May 31 2022 · Video Course (1 hr, 41 mins)
Find out where and how to save data in iOS! This course explores common methods for persisting user data, ...
more
Saving Data in iOS
Find out where and how to save data in iOS! This course explores common methods for persisting user data, all from within Xcode Playgrounds.
Multiple Domains
AttributedString Tutorial for Swift: Getting Started
Feb 28 2022 · Article (30 mins)
Learn how to format text and create custom styles using iOS 15’s new AttributedString value type as you build...
more
AttributedString Tutorial for Swift: Getting Started
Learn how to format text and create custom styles using iOS 15’s new AttributedString value type as you build a Markdown previewer in SwiftUI.
iOS & Swift
Programming in Swift: Functions & Types
Jan 4 2022 · Video Course (4 hrs, 34 mins)
Gain a deeper understanding of functions, practice using closures, and build your skills with named types....
more
Programming in Swift: Functions & Types
Gain a deeper understanding of functions, practice using closures, and build your skills with named types.
iOS & Swift
Programming in Swift: Fundamentals
Oct 19 2021 · Video Course (4 hrs, 6 mins)
Learn about Apple’s open source programming language, Swift, through hands-on examples! Take a deep dive i...
more
Programming in Swift: Fundamentals
Learn about Apple’s open source programming language, Swift, through hands-on examples! Take a deep dive into the Swift language, learning about core Swift concepts like loops, collections, types, optionals, functions, classes, and more.
iOS & Swift
Higher-Order Functions in Swift
Aug 31 2021 · Video Course (34 mins)
Learn what higher-order functions are, and how to write and use them in Swift. Expand your understanding w...
more
Higher-Order Functions in Swift
Learn what higher-order functions are, and how to write and use them in Swift. Expand your understanding with examples from the Swift Standard Library, the new Swift Algorithms framework, and SwiftUI.
iOS & Swift
Opaque Return Types and Type Erasure
Aug 30 2021 · Article (35 mins)
Learn how to use opaque return types and type erasure to improve your understanding of intuitive and effectiv...
more
Opaque Return Types and Type Erasure
Learn how to use opaque return types and type erasure to improve your understanding of intuitive and effective APIs, both as a developer and a consumer.
iOS & Swift
WWDC 2021: Breaking Changes in SwiftUI
Jun 29 2021 · Screencast (4 mins)
We haven't seen many breaking changes in SwiftUI, but here are some deprecations and replacements you ...
more
WWDC 2021: Breaking Changes in SwiftUI
We haven't seen many breaking changes in SwiftUI, but here are some deprecations and replacements you should look out for this year!
iOS & Swift
WWDC 2021: Intro to async/await
Jun 22 2021 · Screencast (16 mins)
With WWDC 2021, Apple released a whole bunch of concurrency features with async/await leading the pack. In...
more
WWDC 2021: Intro to async/await
With WWDC 2021, Apple released a whole bunch of concurrency features with async/await leading the pack. In this video, you'll learn how to use this new language feature but more importantly, you'll learn how it fits into Apple's concurrency landscape.
iOS & Swift
async/await in SwiftUI
Jun 21 2021 · Article (35 mins)
Convert a SwiftUI app to use the new Swift concurrency and find out what’s going on beneath the shiny surface.
async/await in SwiftUI
Convert a SwiftUI app to use the new Swift concurrency and find out what’s going on beneath the shiny surface.
iOS & Swift
Building a Custom Collection with Protocols in Swift
Jun 24 2020 · Article (35 mins)
In this Swift tutorial, you’ll learn how to use collection protocols to create your own implementation of a B...
more
Building a Custom Collection with Protocols in Swift
In this Swift tutorial, you’ll learn how to use collection protocols to create your own implementation of a Bag collection type.
iOS & Swift
What’s New in Swift 5.2
Apr 13 2020 · Article (20 mins)
Swift 5.2 is now available as part of Xcode 11.4. In this article, you’ll get an overview of the changes you’...
more
What’s New in Swift 5.2
Swift 5.2 is now available as part of Xcode 11.4. In this article, you’ll get an overview of the changes you’ll see moving to Swift 5.2.
iOS & Swift
Unsafe Swift: Using Pointers and Interacting With C
Feb 3 2020 · Article (30 mins)
In this tutorial, you’ll learn how to use unsafe Swift to directly access memory through a variety of pointer...
more
Unsafe Swift: Using Pointers and Interacting With C
In this tutorial, you’ll learn how to use unsafe Swift to directly access memory through a variety of pointer types.
iOS & Swift
Protocol-Oriented Programming Tutorial in Swift 5.1: Getting Started
Jan 22 2020 · Article (25 mins)
In this protocol-oriented programming tutorial, you’ll learn about extensions, default implementations and ot...
more
Protocol-Oriented Programming Tutorial in Swift 5.1: Getting Started
In this protocol-oriented programming tutorial, you’ll learn about extensions, default implementations and other techniques to add abstraction to your code.
iOS & Swift
Swift 5.1 Cheat Sheet and Quick Reference
Nov 18 2019 · Article (1 min)
Download a handy 4-page PDF Swift 5.1 Cheat Sheet and Quick Reference!
Swift 5.1 Cheat Sheet and Quick Reference
Download a handy 4-page PDF Swift 5.1 Cheat Sheet and Quick Reference!
iOS & Swift
What's New In Swift 5.1: Opaque Return Types
Aug 13 2019 · Screencast (5 mins)
Swift 5.1 adds opaque return types with the some keyword. Let's take a look at what problems it solves...
more
What's New In Swift 5.1: Opaque Return Types
Swift 5.1 adds opaque return types with the some keyword. Let's take a look at what problems it solves and how to use it.
iOS & Swift
Overloading Custom Operators in Swift
Aug 7 2019 · Article (20 mins)
In this Swift tutorial, you’ll learn how to create custom operators, overload existing operators and set oper...
more
Overloading Custom Operators in Swift
In this Swift tutorial, you’ll learn how to create custom operators, overload existing operators and set operator precedence.
iOS & Swift
What's New In Swift 5.1: Miscellaneous Changes
Aug 6 2019 · Screencast (4 mins)
Swift 5.1 adds polish that you can take advantage of when building your next great app. Check some of them...
more
What's New In Swift 5.1: Miscellaneous Changes
Swift 5.1 adds polish that you can take advantage of when building your next great app. Check some of them out like default value for memberwise initializers, implicit returns from single-expression functions and static subscripts in this screencast.