Apple How-to App Store rejection - when to re-submit app public – 1 min read Based on the rejection type, you may or may not have to resubmit the app for the reviewer to approve,… Oct 14, 2021 Arturo
SwiftUI How-to Load Safari inside app - SwiftUI public – 1 min read Load Safari as a fullScreenCover inside of your application. import SwiftUI import SafariServices struct SFSafariViewWrapper: UIViewControllerRepresentable { let url: URL func… Oct 14, 2021 Arturo
Swift How-to How to write a file in storage disk - Swift public – 1 min read Let's say that you have a JSON message from an API and you are trying to avoid unnecessary calls, and… Oct 14, 2021 Arturo
SwiftUI How-to In-App Purchases - StoreKit with SwiftUI public – 4 min read Updated: Jul 8, 2022 I will be following the official doc. provided by apple, of course in this post I… Sep 25, 2021 Arturo
XCode How-to Solve warning "was built for newer macOS version" - XCode public – 1 min read If you ever got a warning like this: ld: warning: dylib (/Applications/Xcode.app/Contents/PlugIns/IDESwiftPackageCore.framework/Versions/A/… Sep 16, 2021 Arturo
SwiftUI How-to Limit characters in a Form using @Binding - SwiftUI public – 1 min read We can accomplish the task by using a Binding extension like so: extension Binding where Value == String { func max(_ limit:… Sep 16, 2021 Arturo