Swift: Language Basics Swift is Apple's modern, type-safe language for iOS, macOS, watchOS, and tvOS. It emphasizes safety, performance, and expressive syntax. Swift uses ARC (Automatic Reference Counting) for memory man…
ReadSwift: OOP, Protocols & Extensions Classes vs Structs Struct: value type — copied on assignment. Prefer structs for data models (String, Array, Int are all structs) Class: reference type — shared reference. Use for ident…
ReadSwift: SwiftUI Fundamentals SwiftUI is Apple's declarative UI framework (iOS 13+). Views are value types (structs) — the framework diffs and redraws efficiently. State changes drive UI updates automatically. Views & Layo…
ReadSwift: Concurrency — async/await & Actors Swift 5.5 introduced structured concurrency: async/await, actors, and Tasks. It replaces callback-based and Combine-based async patterns with safer, more readable code. async/awa…
ReadSwift: iOS Essentials URLSession & Networking import Foundation // Decodable model struct Post: Codable, Identifiable { let id: Int let title: String let body: String let userId: Int } // Generic API client struct APICli…
ReadSave this stack to your personal DevRecall — add your own notes, track what you're learning, and share what you know with the community.
Get started — free forever