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

Drawing with ARKit

Hello friends, in this article, we will talk about how to draw with Swift ARKit. You can find my previous post here. We need to create a project and do the same things we did in our previous articles. After adding SceneKit in the Design…

Changing the angle of the Node with ARKit

Hello friends, in this article, we will talk about how to translate the Node we created with Swift ARKit. We will do this example on the house project we created earlier. You can find that article here. As we did in previous projects, we first…

Building a Home with ARKit

Hello friends, in this article, we will talk about how to create a home object with ARKit and display it on the screen. First of all, we need to know how to put a node on the screen. You can find this in my previous…