iOS dev
@iosdevio
10.9K
subscribers
12
photos
5
files
6K
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://matteomanferdini.com/swiftui-views/
Matteo Manferdini
How to Create and Combine SwiftUI Views Without Getting Lost in Deep Nesting and Complex Layouts
As you create increasingly complex SwiftUI views, you may feel your code is turning into a tangled mess of nested stacks, layout view modifiers, and conditionals. In this article, we’ll explore how to leverage SwiftUI’s full toolkit—beyond just stacks—to…
iOS dev
https://www.avanderlee.com/concurrency/modern-swift-lock-mutex-the-synchronization-framework/
SwiftLee
Modern Swift Lock: Mutex & the Synchronization Framework
Learn how a Swift lock can help you create thread-safe access to data as an alternative to actors in Swift Concurrency.
iOS dev
https://www.avanderlee.com/concurrency/threads-vs-tasks-in-swift-concurrency/
SwiftLee
Threads vs. Tasks in Swift Concurrency
Explore the difference between Threads and Tasks in Swift Concurrency and traditional threading methods. Get clarity on their usage.
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.