
SwiftUI - Creating custom Xcode library items
The Xcode library is a great way to discover and learn about available SwiftUI views and modifiers and allows you to conveniently drag and drop them to the Xcode Previews canvas without writing any...
The Xcode library is a great way to discover and learn about available SwiftUI views and modifiers and allows you to conveniently drag and drop them to the Xcode Previews canvas without writing any...
Following up on one of my previous article, it is time to revisit Swift Packages and discover what is new in Swift 5.3 and Xcode 12 and how we can take advantage of all the new features. SwiftUI P...
As iOS developers, we spend a considerable amount of time in Xcode, so it’s worth taking some time to know your way around Xcode. Knowing how to edit, search effectively, and how to navigate your ...
Early on during the development of my recent standalone watchOS app while adding HealthKit support I stumbled into a very annoying issue. Upon uploading a TestFlight build the App Store Connect upl...
Since the release of iPadOS 13, the iPad has gained a lot of useful features making it so much more of a viable option for getting real work done. That being said, it still lacks in several areas, ...
Swift Package Manager, or SPM, is a tool for managing the distribution of Swift code. It is also a great tool to manage your project dependencies, allowing you to import third-party frameworks or t...
SwiftUI, a declarative UI programming framework introduced by Apple during WWDC 2019 aims to provide a shorter path to building great user interfaces across Apple platforms. With SwiftUI you learn...
Functional programming is a programming paradigm and perhaps even more so a mindset which helps you structure your programs into separate functions. These functions take some input and return the c...