Singleton Classes in Swift
Singleton Classes in Swift

Create Singleton class in Swift 5 in 2022

Singleton class in swift is a very useful and popular design pattern in development. Most of the developers are using this design pattern. This is very simple, common, and easy to use…

How to make UIView Clickable
How to make UIView Clickable

How to make UIView Clickable in Swift

UIView is the core element in swift, we always use UIView if we want to create something unique like a custom design, a custom button. It is an object which…

Quiz App in Swift
Quiz App in Swift

Quiz App in Swift

Creating an application in iOS is very easy, we only need to understand the basic concept and data flow between the screens. In this article, we are going to learn…

MVVM in Swift

Model View View Model architecture pattern is the advanced version of MVC architecture pattern. MVVM architecture pattern allows us to make the project structural and easy to maintain. The files…

Model View Controller in Swift
Model View Controller in Swift

Model View Controller in Swift

Model View Controller in Swift is very common architecture pattern in iOS mobile application development. MVC architecture pattern allow us to make the project structural and easy to maintain. All…

Pinch to Zoom image In
Pinch to Zoom image In

Pinch to Zoom image In/Out Programmatically

Viewing images closely by pinch to zoom them is very common in any iOS app. ImageView is used to show the images but unfortunately, ImageView doesn't come up with this…

add delete row in tableview cell
add delete row in tableview cell

Add and Delete cells from TableView in Swift 5

In this tutorial, we are going to talk about, how we can Add or Delete cells from TableView in swift. Adding and Deleting cells are very common in day-to-day development…

add-search-to-tableview-in-swift.jpeg
add-search-to-tableview-in-swift.jpeg

Adding Search to TableView in Swift

Searching is a very common feature in any application, Adding search to tableView in swift, allows us to search in the list of elements that are presenting on table view…

Create a DropDown Menu in Swift

DropDown menu is not a provided functionality in iOS application development, we are dependent on UIPicker or AlertSheet which doesn't look like Dropdown Menu or we need to use the…

Swift 5.1 – How to make Drawing App

In this tutorial, we'll look at how we can build a very simple drawing app. We will learn how we can change the color, stroke size, opacity, and even save…