iOS dev
@iosdevio
9.93K
subscribers
12
photos
5
files
6.2K
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
9.93K subscribers
iOS dev
https://livsycode.com/blog/what-is-swift-concurrency/
Livsy Code → Learn Swift the smart way
What is Swift Concurrency? → Livsy Code
Greetings, traveler! Swift Concurrency was introduced to address a long-standing problem in application development: writing concurrent code that remains correct as systems grow in complexity. Coordinating work across threads has traditionally relied on conventions…
iOS dev
https://livsycode.com/swift/swift-arc-from-zombie-objects-to-side-tables/
Livsy Code → Learn Swift the smart way
Swift ARC: From Zombie Objects to Side Tables → Livsy Code
Greetings, traveler! Reference counting is one of those topics every iOS developer learns early and then rarely revisits in depth. At the surface, it feels predictable: objects are retained, released, and eventually deallocated. Underneath, the implementation…
iOS dev
https://onmyway133.com/posts/how-to-use-isolated-and-nonisolated-in-swift-6-concurrency/
Onmyway133
How to use isolated and nonisolated in Swift 6 concurrency | Swift Discovery
Issue #1039
Actor isolation in Swift 6 is not binary. A type can be mostly isolated while selectively exposing some members to callers from any context. A function can accept any actor and run directly on its executor without being bound to it permanently.…
iOS dev
https://onmyway133.com/posts/how-to-avoid-swift-6-concurrency-crashes/
Onmyway133
How to avoid Swift 6 concurrency crashes | Swift Discovery
Issue #1037
Enabling Swift 6 strict concurrency checking (SWIFT_STRICT_CONCURRENCY = complete) catches data races at compile time, but it does not protect you fully at runtime. The compiler also injects dynamic isolation assertions at actor and GCD boundaries.…
iOS dev
https://matteomanferdini.com/swiftui-reusable-views/
Matteo Manferdini
3 Key Strategies to Make SwiftUI Views More Reusable
Monolithic views are the most common issue in SwiftUI codebases, especially among inexperienced developers. While the declarative nature of SwiftUI makes it possible to quickly put together complex user interfaces, it also makes it easy to create massive…
iOS dev
https://www.avanderlee.com/ai-development/xcode-instruments-time-profiler-improve-performance-with-ai/
SwiftLee
Xcode Instruments Time Profiler: Improve performance with AI
Discover the benefits of using the Time Profiler and AI Agents for optimizing app performance effectively.
iOS dev
https://www.avanderlee.com/concurrency/immediate-tasks-in-swift-concurrency-explained/
SwiftLee
Immediate tasks in Swift Concurrency explained
Understand the role of immediate tasks in Swift 6.2 and learn when to implement them in your concurrent programming.
iOS dev
https://www.avanderlee.com/concurrency/unexpected-task-suspension-points-in-swift-concurrency/
SwiftLee
Unexpected Task suspension points in Swift Concurrency
Explore suspension points in Swift Concurrency and learn how they affect task execution and app performance.
iOS dev
https://www.massicotte.org/step-by-step-designing-protocols/
massicotte.org
Concurrency Step-by-Step: Designing Protocols
Swift protocols comes with trade-offs at every turn. Understanding them is the key to a successful design.
iOS dev
https://medium.com/ios-ic-weekly/the-flaky-test-that-taught-me-how-swift-concurrency-actually-works-9b8ff9ded1cf
Medium
The Flaky Test That Taught Me How Swift Concurrency Actually Works
Building a test clock in Swift sounds simple. Making it deterministic under @MainActor is where the real concurrency model reveals itself.
iOS dev
https://swiftwithmajid.com/2026/04/06/building-list-replacement-in-swiftui/
Swift with Majid
Building List replacement in SwiftUI
Whenever you consider creating a scrollable screen in SwiftUI, you might think of using a List. However, it’s not always the best choice. Lists are great for displaying uniform data. For anything else, a ScrollView with a lazy stack is almost always the best…