Sticker Wall – Playing with SwiftUI for the first time trying to recreate @Apple iMessage holo stickers 😍
Huge thank you for @philipcdavis for his incredible course, @jmtrivedi and @alexwidua for the open source projects and @Gavmn for the inspiring prototypes! 🙌🔥
@twannl@jordibruin if possible also cover how to use agentic tools to create a design system, that way all the screen will have the same design language
GCD: Why Read Operations Must Use sync, Not async
"Why can't I use async for thread-safe reads?"
Most iOS devs get this wrong about GCD.
The answer might surprise you 🧵
@escaping TL;DR:
sync ≠ blocking other operations on a concurrent queue!
Use sync for reads, sync+barrier for writes.
Master this pattern for thread-safe Swift code! 🚀
Like this? Follow for more Swift tips!
#Swift#iOS#iOSDev