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…

Pass data from TableView Cell to Another Controller
Pass data from TableView Cell to Another Controller

Pass data from TableView Cell to Another Controller

In iOS, When we are working on creating an apps, we have multiple view controllers sometimes, we need to pass the data from one controller to another controller OR from…

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…

Create Drop-Down List_Menu
Create Drop-Down List_Menu

How to Create Drop-Down List/Menu in Swift

iOS is very rich in UI elements, but when it comes to the Drop-Down list/menu there is no support for it. Drop-Down is using in almost all kinds of apps…

create UITableView programmatically
create UITableView programmatically

Create UITableView Programmatically in Swift

UITableView is a basic UI element in iOS App. We can design a table view on the storyboard with its custom cells or XIB. But sometimes we need to create…