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…

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…

UITableView With Sections
UITableView With Sections

How to Create UITableView with sections in Swift 5

Whenever we have to show the multiple items on the list, the first thing that comes to mind is UITableView. UITableView is the essential UI component in iOS Application Development.…

Slide up menu animation
Slide up menu animation

Create a Slide-Up Menu in Swift

Showing views with some animation is very common in iOS applications and people love these animations. Animations enhance the user experience and that hold the user in the application. In…

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…

Collection view inside tableview
Collection view inside tableview

Add CollectionView inside TableView

Having a collection view inside table view has become a very common design pattern. Many of the applications are already using this kind of pattern in their apps like Spotify,…