-
Storing Codable structs on the disk
Most of our apps are REST clients for some backends. During the development of this kind of apps, we want to keep it working offline. In this case, we have to cache data somewhere locally on the device to make it readable without an internet connection.
-
Haptic feedback in iOS apps
Feedback helps people know what an app is doing, discover what they can do next, and understand the results of actions. This week I am going to talk about the Haptic Feedback Engine which provided by Apple in most of the devices.
-
Extracting presentation logic to make it testable
-
Starting Unit Testing with Model layer
Most of us heard about the pros of Unit Testing. I want to show how easily you can start with Unit Testing by covering your model layer.