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.…
Hello friends, in this article, we will talk about what is Dispatch Group in Swift. Dispatch Group allows you to do multiple jobs asynchronously in your application. As an example, I will go through the library project in my Github repo. You can access the…
Hello friends, in this article we will talk about what is Realm and how to use it. When developing mobile applications with iOS, we often need to store some data on the user's device. While this is very simple data at times, it can go…
Hello friends, in this article, we will talk about how we detect the ground with ARKit and how we add a model when we detect the ground. As you know, ARKit is used in many different ways and for many different purposes. One of these…
Hello friends, in this article we will talk about what Dependency Injection is. It comes from Dependency Inversion, the last principle of Solid principles. This principle cares that the interdependence between the classes we create is as low as possible. Upper class and lower class…
Hello friends. In this article, I will tell you about an error that occurs when processing with Swift. This error appears as follows. UILabel.text must be used from main thread only After pulling more data from the internet, if we do something on the UI,…
Hello friends, in this article, we will talk about how to change the name of a project that we have opened in Xcode. Project names are usually put without much thought at the beginning of the project and then intensively thought about. For this reason,…
Hello friends, in this article, I will talk about how we can manage permissions for different languages on the iOS side with Xamarin Forms. Many applications offer multi-language support, but we have to show the user that everything is a whole so that the integrity…
Hello friends, in this article, we will talk about how to open settings with Xamarin.Forms. In many applications we get data from the device hardware or from its gallery. In order for us to receive this data, the user needs permission. If the user does…