
Tag: XCode


(Turkish) Swift Dispatch Group Nedir?

(Turkish) Swift ile Realm Nasıl Kullanılır?

(Turkish) XCode Proje ismi Değiştirmek

XCode Code Snippet
Hello friends. In this article, I will talk about how to create a code snippet with XCode. What is a Code Snippet should be mentioned first. It allows Xcode to automatically fill itself when you actually press the Tab key while you are writing code. For example, when you type a for loop and press […]

Swift Package Manager
Hello friends. In this article, we will talk about what is Swift Package Manager and why to use Swift Package Manager. Swift Package Manager is a feature of XCode where you can install packages through itself. You can use it in CocoaPods or Carthage instead of Swift Package Manager. With these, you can add 3rd […]

Swift Alert & Action Sheet
Hello friends. In this article, I will talk about how to create an Alert and Display Action Sheet with Swift. First of all, I will talk about what is Alert and Display Action Sheet. If you want to show an error or warning message on the screen, the best way to do this is to […]

Xamarin.iOS
Hi, I am going to talk about how to write native applications for iOS with Xamarin in my current article. First we need to create an application. After creating the application, we need a Mac device, of course, to do the operations. When creating the project, the opposite screen appears as below. Now we have […]

Swift Adding Icon
Our mobile applications also have a very important icon in terms of first impression. Twitter, Facebook, Microsoft, Apple, I think that the logos of these companies come directly to the icons. In this article, I will talk about how to use Swift to change the icon of my mobile application. Of course you need to […]

Swift Var and Let
Defining variables is one of the top priorities in a programming language. Because we keep almost all the values different. There are two easiest ways to do this in Swift let and var you can easily define variables with variables. The difference between these two types of variables is that if you ask, what is […]