Build intuitive iOS apps Photo by Evan Krause on Unsplash. Alerts are one of the most crucial building blocks of iOS applications. We can use them to inform users about an error if something requires more time, Read Full
Tag: swiftui
The Top 5 Trending iOS Libraries in February 2021
Some cool offerings from the SwiftUI community Photo by Frederik Lipfert on Unsplash After covering the SwiftUI annual recap from 2020, it’s time to look at some new iOS libraries that were released during the shortest month Read Full
An Overview of Built-In SwiftUI Views
Build SwiftUI apps faster by choosing the right views Photo by Charles Deluvio on Unsplash. SwiftUI is fun. Personally, I really enjoy building complex and beautiful views with Apple’s new declarative UI framework. But before you start Read Full
Refactoring Imperative Code Using Combine in iOS
Let’s solve real-world problems with the declarative framework Photo by Bailey Heedick on Unsplash. During the WWDC talk on the new Combine framework, the presenter told the audience that it was very much a mix-and-match solution, with Read Full
How To Use Firebase in SwiftUI’s New Application Lifecycle
Explore Firebase with SwiftUI 2.0 Photo by the author. SwiftUI 2.0 brought us a lot of new features. My favorite is the new application lifecycle because it is simpler than the old one, but configuring it with Read Full
10 SwiftUI Libraries To Use In 2021
The coolest offerings for iOS, macOS, watchOS, and tvOS developers Photo by Adam van den Brink on Unsplash. SwiftUI has truly changed how we design and think about iOS apps. After making its debut at WWDC 2019, Read Full
Using async/await in SwiftUI
Swift Evolution Concurrency just got a whole lot easier Image by author A lot of the code we write has to deal with asynchronous behaviour. Fetching data from the disk, sending a request to a remote API, Read Full
How To Section Lists Alphabetically in SwiftUI
How to group, search, and filter through your contact list Create an identifiable struct for our contacts that stores the first name, last name, and phone number. Add an ID of type UUID to conform to the Read Full
Build a Dogecoin Price Tracker With SwiftUI
The cryptocurrency coin may be a meme. So let’s have fun with it using CoinGecko API Photo by Clay Banks on Unsplash The cryptocurrency Dogecoin has had an incredible run this week, fuelled only by hype and Read Full
Working With the flatMap Combine Operator in iOS
Demystify this tricky operator to build reactive iOS apps Photo by the author. If you watched the Introducing Combine WWDC 2019 talk by Tony Parker, you could be forgiven for thinking that using Combine is a walk Read Full
Integrating Combine in SwiftUI
Let’s focus on Combine. It contains publishers, subscribers, and operators. Publishers send the data in, subscribers consume the data, and operators are the middlemen. Although you can integrate these into SwiftUI through observed and published objects, you Read Full
SwiftUI and Core Data: The MVVM Way
A clean and intuitive way to handle Core Data entities in SwiftUI Photo by Banter Snaps on Unsplash. When I first started using SwiftUI for some small projects, I immediately appreciated its ease of use and expressiveness. Read Full