Systems | Development | Analytics | API | Testing

Swift Concurrency Explained: GCD, Operation Queues, and Async/Await

Concurrency is the ability of an app to perform multiple tasks at once, and it’s a crucial concept for apps that need to perform multiple tasks at once in an efficient, usable way. Thankfully Swift has made great strides with concurrency, and now provides simple tools for writing robust apps that are responsive and enjoyable to use. In this article we’ll explore two main ways of using threads for concurrency models.

SwiftUI Navigation Explained: Best Practices for Seamless App Flow

Navigation is one of the most basic functionalities of any app, and among the most crucial aspects of our work as developers. From replacing a login screen with our actual logged-in state app, to showing a modal with details of any item inside our app, all of these are navigational challenges we need to tackle in our day-to-day. SwiftUI has introduced a modern approach to navigation in Apple-based platforms.