Cloud Cloud

Iva Horn

Notes from a software engineer for iPhone, iPad and Mac apps.

Memoji

Note Posts

The following posts have been tagged with "Note".

Signing Arbitrary macOS Bundle Identifiers

September 10, 2025

If you’re shipping apps for both iOS and macOS, you’ve probably noticed that registering bundle identifiers with your developer team is necessary for iOS only.

Logging and Signposting Taxonomy in Concurrency

March 12, 2024

Having a file provider extension with multiple domains and processes and even more enumerators logging in parallel can become a mess. Leveraging the subsystem and category fields to the rescue.

Convenient NSPredicate Initializers

February 22, 2024

There is a better way than to repeat the same or similar NSPredicate all the time and it is very nice to read.

fileproviderctl Is Broken on macOS 13.6 Ventura

February 12, 2024

macOS 13.6 Ventura shipped a fileproviderctl binary with broken signing which rendered it useless and us unable to properly clean up the environment.

macOS Color Palettes

February 9, 2024

A quick note how to create, find and backup custom color palettes on macOS.

Documentation Comments on Test Methods

February 3, 2024

I just want to share a minor inspiration which might help in daily business with unit tests.

@Attribute(.unique) Causes Model Replacement

February 2, 2024

While making my first experiences with SwiftData, I also used @Attribute(.unique) on a model property. I expected model insertion to throw an error or crash in case this constraint is violated. The actual behaviour was rather surprising.