iOS dev
@iosdevio
10.9K
subscribers
12
photos
5
files
6.01K
links
There is a single sponsored link in each issue (monday).
One sponsor per issue.
Every sponsored link should be highly relevant to Apple ecosystem app development.
Sponsored link price - 100$
Contact:
@tigorn
Download Telegram
Join
iOS dev
10.9K subscribers
iOS dev
https://www.swiftbysundell.com/articles/let-vs-var-for-swift-struct-properties/
Swift by Sundell
Deciding between ‘let’ and ‘var’ for Swift struct properties | Swift by Sundell
Does marking a given Swift struct property as either ‘let’ or ‘var’ simply determine its mutability, or is there more to it? Let’s explore!
iOS dev
https://fatbobman.com/en/posts/how-to-detect-text-truncation-in-swiftui/
fatbobman.com
How to Detect Text Truncation in SwiftUI?
Learn how to detect text truncation in SwiftUI using fixedSize and GeometryReader, and dynamically select adaptive layouts with ZStack and layoutPriority to ensure text content displays fully without being cut off.
iOS dev
https://troz.net/post/2025/swiftui-mac-2025/
TrozWare
SwiftUI for Mac 2025 - TrozWare
Crazy Mac lady. Mac author & developer. Lover of Apple computers and devices. Swift & SwiftUI enthusiast. Unofficial Mac app dev evangelist
iOS dev
https://nilcoalescing.com/blog/SwiftUISearchEnhancementsIniOSAndiPadOS26/
Nil Coalescing
SwiftUI Search Enhancements in iOS and iPadOS 26
Take advantage of the updated search placement and behavior in iOS 26, and implement toolbar and tab bar search patterns that adapt across devices and integrate with the new Liquid Glass design.
iOS dev
https://useyourloaf.com/blog/swift-observations-asyncsequence-for-state-changes/
Use Your Loaf - iOS Development News & Tips
Swift Observations AsyncSequence for State Changes
Swift 6.2 introduces a new Observations type to stream state changes from an Observable type.
iOS dev
https://medium.com/@victorbaro/implementing-a-refractive-glass-shader-in-metal-3f97974fbc24
Medium
Implementing a Refractive Glass Shader in Metal
This post explores how to build a simple but convincing refractive glass material in Metal. It assumes you have some familiarity with…
iOS dev
https://medium.com/@egzonpllana/how-i-stopped-a-silent-memory-leak-in-my-ios-app-282aef170df5
Medium
How I Stopped a Silent Memory Leak in My iOS App
Let me take you through the journey of how I went from achieving 85% memory reduction on a common user interaction. While casually exploring the app, I noticed something off: the RAM footprint would…
iOS dev
https://swiftwithmajid.com/2025/07/30/streaming-changes-with-observations/
Swift with Majid
Streaming changes with Observations
Apple introduced the Observation framework a few years ago. The Observation framework became the main tool for building observable models, replacing the Combine framework. This week, we will talk about a new piece of the framework called Observations.
iOS dev
https://www.pointfree.co/blog/posts/181-a-swiftdata-alternative-with-sqlite-cloudkit-public-beta
www.pointfree.co
A SwiftData alternative with SQLite + CloudKit: Public beta
We are excited to announce the public beta of our upcoming, powerful SQLite + CloudKit synchronization tools.
iOS dev
https://www.avanderlee.com/concurrency/combine-and-swift-concurrency-a-threading-risk/
SwiftLee
Combine and Swift Concurrency: A threading risk
Explore the challenges of migrating Combine to Swift Concurrency and understand the potential risks involved.
iOS dev
https://www.avanderlee.com/concurrency/global-actor/
SwiftLee
Global actor in Swift Concurrency explained with code examples
Explore the concept of a global actor in Swift Concurrency and learn when to use it for safe, serialized access to data.
iOS dev
https://fatbobman.com/en/posts/default-actor-isolation/
fatbobman.com
Default Actor Isolation - New Problems from Good Intentions
Swift 6.2’s Default Actor Isolation reduces boilerplate by inferring isolation for unmarked code, but brings new actor-boundary rules and macro challenges