Systems | Development | Analytics | API | Testing

April 2024

Complete Guide to SwiftUI Lists for Developers

Whether it’s the groceries you need from the store, the chores your mom left on the kitchen counter for when you got home from class, or even things to do before you die, lists are everywhere. Presenting data in a column (or a list) is the most familiar and natural way to organize information in both the analogue and digital worlds.

Complying with Apple's New Privacy Requirements in the App Store

One of the latest changes introduced by Apple is that developers needs to describe the data your app or third-party SDK collects and provide the required reasons of the APIs it uses. To do so, applications and third-party SDKs that are distributed as XCFrameworks, Swift packages, or Xcode projects, need to contain a privacy manifest file, named PrivacyInfo.xcprivacy. Table of Contents.

Swift Standard Library Protocols - A guide to Equatable, Comparable, Hashable, and Identifiable.

There are several protocols featured in the Swift Standard Library that enable generic programming in Swift. By defining common behaviors and functionalities for types and collections, these protocols provide a standard way for types to interact with each other. Today we’re going to take a look at four of the key Swift Standard Library Protocols, these are: We’ll provide a brief overview of how each works, and then how we can implement them in our projects.

Deploying Microfrontends on AWS: A Guide for Developers

If you are new to Microfrontends architecture, it’s a modern approach for splitting the frontend of your application into multiple components, so it’s easier to code and manage. We’ve actually got a separate article, introducing the concept, which you can read here. Or, if you’ve already read that introduction and now want to go a step further, just read on.