Swift Singleton

Hello friends, in this article, we will talk about what Singleton is and how to use it with Swift. This pattern is very commonly used to avoid static variables and functions in general. We can easily access and use the structure we have developed with…

Swift Generic Service

Hello friends, in this article we will talk about how to create a generic service with Swift. With a generic service structure, we can easily change and manage it when we change something extra in the future. We can make service requests with less code.…