If you’ve been working with SwiftUI, you’ve likely noticed that your views start pretty simple but then balloon into large, unmaintainable monoliths that are hard to preview and test. While there are several techniques to keep SwiftUI views modular and reusable, some problems are architectural in nature and can only be addressed by following proven ... Read more| Matteo Manferdini
explore how MVVM fits into SwiftUI, how to leverage its advantages, and how it compares to Clean Swift and the Composable Architecture.| Matteo Manferdini
Uncategorized | Matteo Manferdini
When you need to download or upload data in iOS apps, use the `URLSession` class to group, pause, resume and cancel network transfers.| Matteo Manferdini
`AsyncImage` is a convenient SwiftUI view that loads remote images using a URL. It's especially useful in apps that interact with REST APIs.| Matteo Manferdini
Parsing JSON Data is a fundamental in modern SwiftUI apps. This comprehensive guide covers all the aspects of the Codable protocols in Swift.| Matteo Manferdini
Converting JSON data into a formatted string helps build decodable Swift types and is useful when debugging and testing an app’s code.| Matteo Manferdini