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.…

Swift What is Dispatch Group?

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…

How to Use Realm with Swift

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…

Ground Detection with ARKit

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…

Dependency Injection

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…

Swift Main Thread Error

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,…

XCode Project Name Changing

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,…

Xamarin Android Round Icon

Hello friends, in this article, we will talk about how to make a round icon in Android applications that we developed with Xamarin Forms. In many versions of Android, app icons are shown in a circular form on the home screen. This causes the application…

Xamarin Forms iOS Multilanguage Permission Strings

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…

Opening Settings With Xamarin Forms
C#

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…