Live · Topic

iOS Development, as it's being written.

Everything worth reading from 15 curated sources in this topic, newest first and refreshed through the day.

Sources
15
Stories
19
Updated
09:52 AM

Latest

19 illustrated stories · updated 09:52 AM
Latest News - Apple Developer

Hello Developer: August 2026

In this edition: Check out an all-new video from Cupertino to dive deeper into the biggest updates from WWDC26. Download templates and get started building App Store assets for iOS 27. Discover best practices for integ…

Aug 5, 03:00 PM
Bruno Rocha

Everything about my smart home and homelab setup

I've written a couple of posts in the past about how my home network and home automation setup is laid out, but it changed so much over time that it's now time for an updated post! This time I'll put everything together …

Aug 2, 07:29 AM
Alberto De Bortoli

Revisiting the JET iOS Modular Architecture in 2026

Revisiting the Modular iOS Architecture @ Just Eat from 2019 addressing previous limitations and refining the vocabulary.

Jul 15, 06:48 PM
Latest News - Apple Developer

Hello Developer: July 2026

In this edition: Try an all-new search tool on the Apple Developer website. Download design kits for Figma and Sketch. Explore the biggest updates from WWDC26 in new activities around the world and online. Read about A…

Jul 7, 04:00 PM
Latest News - Apple Developer

Design kits for iOS, iPadOS, and macOS 27 are here

Apple design kits for Figma and Sketch are now available for iOS, iPadOS, and macOS 27. These include: Updates to Liquid Glass Expanded component and state support Naming changes to better align with code Improved resiz…

Jun 23, 09:00 PM
Alberto De Bortoli

Luca: A Decentralized Tool and Skills Manager for the AI-Augmented Developer Workflow

Introducing Luca. Luca manages tools, agentic skills and tasks on macOS and Linux. https://luca.tools/

Apr 13, 01:48 PM
Alberto De Bortoli

Universal Links At Scale: The Challenges Nobody Talks About

A deep dive into the practical challenges of implementing, testing, and maintaining Universal Links at scale

Jan 15, 11:34 PM
Alberto De Bortoli

How to Implement a Decentralised CLI Tool Manager

A design to implement a simple, generic and decentralised manager for CLI tools from the perspective of a Swift dev.

Jul 13, 11:15 PM
Alberto De Bortoli

How to setup a Swift Package Registry in Artifactory

A quick guide to setting up a Swift Package Registry with Artifactory to speed up builds and streamline dependency management.

Jun 6, 08:00 AM
Augmented Code

Swift 6 suitable notification observers in iOS

The author discusses challenges managing side projects, specifically updating SignalPath to Swift 6. They encountered errors related to multiple notification observations but resolved them by shifting to publishers, avoi…

Nov 18, 04:00 PM
Augmented Code

AnyClass protocol and Objective-C methods

AnyClass is a protocol all classes conform to and it comes with a feature I was not aware of. But first, how to I ended up with using AnyClass. While working on code using CoreData, I needed a way to enumerate all the Co…

Nov 4, 04:00 PM
Augmented Code

AnyView is everywhere in Xcode 16

Xcode 16 introduces a new execution engine for Previews, enhancing project configuration support and improving performance by up to 30%. However, it wraps SwiftUI views in AnyView for debug builds, which can hinder optim…

Oct 21, 03:00 PM
Augmented Code

Sorting arrays in Swift: multi-criteria

Swift’s foundation library provides a sorted(by:) function for sorting arrays. The areInIncreasingOrder closure needs to return true if the closure’s arguments are increasing, false otherwise. How to use the closure for …

Oct 7, 03:00 PM
Augmented Code

How to keep Date’s microseconds precision in Swift

DateFormatter is used for converting string representation of date and time to a Date type and visa-versa. Something to be aware of is that the conversion loses microseconds precision. This is extremely important if we u…

Sep 23, 03:00 PM
Augmented Code

Wrapping async-await with a completion handler in Swift

It is not often when we need to wrap an async function with a completion handler. Typically, the reverse is what happens. This need can happen in codebases where the public interface can’t change just right now, but inte…

Sep 9, 03:00 PM
Alberto De Bortoli

Scalable Continuous Integration for iOS

How Just Eat Takeaway.com leverage AWS, Packer, Terraform and GitHub Actions to manage a CI stack of macOS runners.

Jan 3, 10:26 PM
Ole Begemann

How the relative size modifier interacts with stack views

And what it can teach us about SwiftUI’s stack layout algorithm I have one more thing to say on the relative sizing view modifier from my previous post, Working with percentages in SwiftUI layout. I’m assuming you’ve rea…

Mar 24, 08:14 PM
Ole Begemann

Working with percentages in SwiftUI layout

SwiftUI’s layout primitives generally don’t provide relative sizing options, e.g. “make this view 50 % of the width of its container”. Let’s build our own! Use case: chat bubbles Consider this chat conversation view as a…

Mar 23, 10:31 PM