Calling asynchronous Firebase APIs from Swift
Callbacks, Combine, and async/await

Search for a command to run...
Articles tagged with #swift
Callbacks, Combine, and async/await

Getting Started

A lot of the code we write has to deal with asynchronous behaviour. Fetching data from the disk, sending a request to a remote API, or downloading an image - all these operations take time, even on your super-fast, low-latency working-from-home netwo...

For the longest time, iOS developers have used UIApplicationDelegate to handle application startup and other lifecycle events in their apps. At WWDC 2020, Apple made some significant changes to how apps participate in the application lifecycle. In t...

For the longest time, iOS developers have used AppDelegates as the main entry point for their applications. With the launch of SwiftUI2 at WWDC 2020, Apple has introduced a new application life cycle that (almost) completely does away with AppDelegat...

Many APIs require developers to provide an API key and/or API secret in order to be able to access the API. This is both to identify the app that is accessing the API, and to limit access to the API for apps that are known to the API. Both the API ke...
