Swift
These pages use the taxonomy term "Swift".
Injecting Dependencies with a simple Annotation
• 4 minute read
Sometimes I would have liked to have dependencies injected in an easier way which reduces boilerplate code. After fiddling around with generics I finally found a satisfying pattern.
How I Test Functions Which Dispatch Tasks
• 1 minute read
Some functions dispatch tasks or code blocks to a different dispatch queue. I have wrapped the wait for that asynchronous code in an extension to XCTestCase.
How I Test View Controllers
• 4 minute read
By example I want to show how I instantiate and test view controllers from a storyboard in a macOS app using the conventional MVC pattern and AppKit.
How to write a Swift Mock Code Generator in Swift
• 5 minute read
Incontent with the Swift mocking solutions available I thought about how to write a mock code generator for Swift by myself. Getting started is surprisingly easy with Swift packages like Swift Argument Parser and SwiftSyntax.
How to manage Login Items in Swift
• 2 minute read
There is a Mac App Store and Sandbox compatible method to implement automatic launch on login. Checking the enablement status before macOS 13 Ventura is a bit tricky, though.
Passing Build Settings Into Property Lists
• 4 minute read
An app which is customizable for different brands and customers also requires a parameterized build configuration. Some values need to be accessible during runtime, too, while retaining a single source of truth. This is more elegant take on what could have been achieved with preprocessor macros in Objective-C times.
macOS Preferences Window with Storyboards
• 4 minute read
Recently I started with a fresh project from scratch in which I wanted to implement a preferences window with tool bar tabs as they are common on macOS. It is surprisingly easy.
Exporting Unified Logging System Messages with OSLog
• 2 minute read
Logs are useless, if you cannot access them. The introduction of the OSLog framework finally makes it possible to extract logs from the unified logging system. This is how.
A macOS App with a File Provider Extension
• 6 minute read
To me it was not obvious on how to get started with the file provider API on macOS. I want to share how I successfully set up an Xcode project for development.
Manually Signing Embedded Swift Runtime
• 2 minute read
Sometimes the Swift runtime ends up in a built product as well and needs to be (re)signed just like the rest.