A DatePicker view is a controller that allows users to select a calendar date and time. It’s similar to the UIDatePicker view and In order to work it needs to bind to a Date .... Read More
In this tutorial, We’ll learn how to implement TabView in SwiftUI. TabView works the same as UITabBarController. Whenever we want to show more views on the same screen the ea.... Read More
In this tutorial, we will learn how to remove a specific character from a string in Swift with a simple example. How to remove a specific character from a string in Swift To remove.... Read More
This SwiftUI tutorial will help you to learn to navigate to a new view in SwiftUI. We’ll be accomplishing this using the Navigation view and Navigation link. It will send the.... Read More
Sometimes there is some white space visible above your content in SwiftUI applications, even when you don’t set the navigation bar title. So this tutorial will guide you in h.... Read More
This tutorial will show you how to sort an array of elements by a length in Swift. This type of sorting is done mainly on a string array to get a sorted array according to the elem.... Read More
This tutorial will guide you on reloading a view in SwiftUI after a specific time interval. I will be using DispatchQueue to delay reloading the view for 1 min. And after 1 min it .... Read More
In this tutorial, we will learn how to check if a string contains special characters in it in Swift with a simple example. If you want to check if your string is having any special.... Read More