UITableView

Add custom checkbox on UITableViewCell

Add custom checkbox on UITableViewCell or UITableView in swift In this tutorial, we are going to learn about, how we can add custom checkbox on UItableViewCell or UITableView in swift. And we also perform IBAction on our custom checkbox placed on UITableViewCell. We will place UIButton on UITableViewCell that will act as checkbox for our […]

Add custom checkbox on UITableViewCell Read More »

Update UITableViewCell subviews tag

Update tags of UItableViewCell on deleting a row: In this post we will learn, how to update UITableViewCell subviews tag without reloading whole UITableview. This scenario comes up in case where we have to delete a row from UITableView. So in order to update tags on UITableViewCell subview’s we have only one option that is

Update UITableViewCell subviews tag Read More »

Create dynamic height UITableViewCell

Create dynamic height UITableViewCell in Swift In this tutorial, we will learn how to create dynamic height UITableViewCell in Swift. To achieve dynamic height we will create multi line UILabel in UITableView using swift language.                                      We will use the new UITableViewAutomaticDimension property. UITableViewAutomaticDimension property is a handy thing for iOS developers as it sets

Create dynamic height UITableViewCell Read More »

How to create UITableview in Swift – Tutorial

Introduction to UITableView in Swift: UITableView is the basic control used in mobile apps. In this tutorial, we will learn how to create UITableView in swift language. All the delegates for the UITableview are same only syntax changes are there in swift language. Let us start how to create UITableView in swift. Implementation of code

How to create UITableview in Swift – Tutorial Read More »

iPhone Development: Set BackgroundColor of UITableView transparent in IOS7

UITableView is the most common control used in iPhone app development.It basically used for displaying a list in our iPhone application. Though you can customize it  in many different ways as per your app.To set background color of your UITableView as transparent, we can use table.backgroundColor = [UIColor clearColor]; The above line of code works

iPhone Development: Set BackgroundColor of UITableView transparent in IOS7 Read More »

iPhone Development: Reload a particular row in TableView

Tags: #Reload a Row #Tutorial #UITableView #IOS  Table-view is the most common control used in iPhone app development.It allow app developers to display data in a list form.Everyone is familiar with its implementation in iPhone SDK but few of us know that we can reload a certain row in table-view Ir-respective of loading a whole table-view by

iPhone Development: Reload a particular row in TableView Read More »