Building a Basic CarPlay Application with SwiftUI
Published on: February 14, 2024
Welcome to the future of in-car entertainment and functionality! In this blog, I'll dive into the exciting world of CarPlay applications, leveraging the power and simplicity of SwiftUI. Buckle up as we explore how SwiftUI transformed the driving experience, making it safer, more intuitive, and downright enjoyable.
@Observable vs ObservableObjects
Published on: February 14, 2024
Comparing @Observable and ObservableObject in SwiftUI can be quite insightful, as both are fundamental in managing data flow within your app.​​​​​​​​​​​​​​
ARC Memory Management
Published on: February 14, 2024
In Swift, Automatic Reference Counting (ARC) is the memory management mechanism used to automatically track and manage the allocation and deallocation of memory for objects. The goal of ARC is to help developers manage memory efficiently without having to manually allocate and deallocate memory.​​​​​​​
Struct vs Class
Published on: February 20, 2024
In Swift, both structs and classes are used to define custom data types, but there are some key differences between them. Here are the main distinctions:
Back to Top