Setting up a custom Swift Package file header
A guide to customizing the default file header comment for new Swift files created within a Swift Package, using an IDETemplateMacros.plist file.
A guide to customizing the default file header comment for new Swift files created within a Swift Package, using an IDETemplateMacros.plist file.
An interview with the creators of Skip.tools, discussing their Swift-to-Kotlin transpiler for building native Android and iOS apps from a single SwiftUI codebase.
Explains how to use Xcode 15's DocC to document and create links to native Swift type extensions for better API discoverability.
Explores using Swift's internal @_silgen_name attribute for forward declarations to improve build times, with strong warnings about its risks.
SwiftUI best practices for using @StateObject property wrappers to avoid performance pitfalls and bugs during initialization.
A guide to automating the build and deployment of Swift Package DocC documentation to GitHub Pages using GitHub Actions.
A guide to using nightly Swift toolchains on macOS for testing bug fixes and upcoming language features like Embedded Swift.
Explains how the Swift compiler uses a syntax check to automatically apply @MainActor isolation to closures passed to DispatchQueue.main.async.
A developer discusses recognizing when an app's design isn't resonating with users and shares plans to experiment with improving its visual interface.
Explains how Swift's inout parameters reduce code duplication, with examples from a real open-source project.
Investigates a bug in iOS 17.2+ causing custom keyboard extensions with Swedish (se.) bundle IDs to disappear from settings and the keyboard switcher.
A Swift tutorial for macOS developers on how to add a background color to menu bar icons to make apps stand out.
The EmojiKit SDK for Swift is being open-sourced, moving from a commercial product to a free, public GitHub repository.
A developer adds GameCenter leaderboards with weekly resets to their iOS game, Endless Hurdles, to foster fair competition.
A tutorial on using the open-source Swift package ApiKit to integrate with and model REST APIs, using the Yelp API as an example.
A developer discusses Bushel, a tool for creating and managing macOS virtual machines for safe software testing, built with Swift Data.
A developer shares initial impressions and basic concepts of SwiftData, Apple's data persistence framework built on Core Data, after experimenting with it.
A guide for the Second Clock macOS app, covering FAQs, troubleshooting, and feature explanations for displaying additional time zones.
A guide for macOS developers on implementing file read/write permissions in sandboxed apps, covering App Sandbox setup and user consent.
A tutorial on converting REST API JSON data directly into CoreData entities in Swift, eliminating the need for duplicate model classes.