SwiftUI Swift How-to How to create a Cross-Platform SwiftUI Project public – 1 min read > This tutorial requires Xcode 12 +, macOS 11.0 Big Sur +, and iOS 14 +. This is very easy and takes less… Jan 2, 2021 Arturo
SwiftUI What is @Published in SwiftUI? public – 1 min read @Published is one of the most useful property wrappers in SwiftUI, allowing us to create observable objects that automatically announce… Dec 29, 2020 Arturo
SwiftUI Swift What is Codable in SwiftUI? public – 7 min read The Codable protocol is Apple’s contribution to a standardized approach to encoding and decoding data. That is especially true for the JSON data we get from REST APIs. Dec 29, 2020 Arturo
Apple Technology Swift No suitable application records were found. Verify your bundle identifier ‘...’ is correct public – 1 min read This happens when you try to upload an new app directly from Xcode to the App Store. Here's how to fix it Dec 28, 2020 Arturo
SwiftUI Swift SwiftUI Must know programming Basics public – 1 min read Learn the fundamentals of SwiftUI. Any Apple developer coding in SwiftUI should know this. Dec 28, 2020 Arturo
SwiftUI How @State works in SwiftUI public – 2 min read The @State keyword is a @propertyWrapper , a feature introduced in Swift 5.1. SwiftUI manages the storage of any property… Dec 28, 2020 Arturo