
Tag: swift


Swift Loading Screen
Hello friends, in this article, we will talk about how we can create a common waiting screen with Swift in our iOS projects. Actually, there are many ways to do this. These; Using a pod Writing extension to UIView Writing a class Using Pod Using a pod for the loading screen is one of the […]

Swift Data Transfer Between Pages
Hello friends, in this article, we will talk about how to send data between two pages with Swift. In the Het application, there is actually a communication between the pages. For example, if you have a list on the home page and we click on an element of this list, we should show the details […]

Swift Camera & Gallery
Hello friends, in this article, we will talk about how we can make photo and video operations with Swift. In almost every application, we ask for media from the user. This is why this issue is important here. This example will be an image at the top and a button below. When the user presses […]

What is App Clips?
Hello friends. In this article, we will talk about what is App Clip. Apple first introduced the basic functions of our application in WWDC 2020, the structure that we can use without downloading the application. With App Clip, there is no longer a need to install the application to perform the basic functions of our […]

SwiftUI Camera & Gallery
Hello friends, in this article, we will look at topics such as how to take photos with SwiftUI and choose photos from the gallery. There is currently no control on SwiftUI side for these processes, which we use in almost many projects. That’s why we need to do this with UIKit. When we want to […]

SwiftUI Splash Screen
Hello friends. In this article, we will talk about how to create Splash Screen with SwiftUI. If we talk about what Splash Screen is, it is actually the first screen to be seen when the application is opened for the first time. Here, if you haven’t done anything, it will appear as a white screen. […]

SwiftUI Grid List
Hello friends. In this article, we’ll look at how to create a split list into two or more numbers with SwiftUI. In my previous article, we talked about how to create a list. You can find it here. In this article, we will develop this a little more on the forehead. First I add a […]

SwiftUI List
Hello friends. In this article, we will talk about how we can do listings with SwiftUI. Those who used UIKit were using UITableView for simple listing operations. SwiftUI has a control called List for simple list operations. We are doing listing operations with this controller. When we do here, we will do an example of […]

SwiftUI SearchBar
Hello friends. In this article, we will talk about how to make a SearchBar with SwiftUI. As you know, friends who previously developed iOS with UIKit could add the UISearchBar control directly to their projects. There is no such control in SwiftUI. You can solve this in 2 different ways. These; Making a search bar […]