Posts from Swift

Custom Datepicker style in SwiftUI

By shagrafnasheet

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

TabView and TabItem() in SwiftUI

By shagrafnasheet

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

Remove a specific character from a string in Swift

By Ashutosh Dhanwe

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

Go to a new view in SwiftUI

By shagrafnasheet

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

How to Hide Navigation bar in SwiftUI

By shagrafnasheet

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

Sort array elements by length in Swift

By Aakanksha Thakar

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

How to reload view in SwiftUI (after specific interval of time)

By shagrafnasheet

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

Check if a string contains special character in it in Swift

By Vaishnavi Nibe

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

Related Posts