#ios
Read more stories on Hashnode
Articles with this tag
The safest way is to keep your API keys server side. But if you have a library that's useable offline and it requires a license key to unlock, you...
Someone asked me that question earlier. Well, as with everything else, it depends. First, if your module/library will need to be distributed with...
When creating a Swift class or actor, if you don't intend to override any of the functions in that class you should use the final keyword. Here's an...
We have been drilled that we should strip debugging symbols before releasing our app on the App Store. Apple even does this automatically for us in...
When storing or reading data from a disk, or when making API calls, does your app's sole validation of data involve ensuring that the JSON can be...
SwiftUI Previews are key to making SwiftUI development fast and easy. However, if your views require a ViewModel, you are impeding your own...