UITableViewCell

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 »

iPhone Development:Add image to UITableViewCell

Working with TableView is a regular process while creating apps for mobile platform.In this post i am going to tell you how to add image to a cell of tableview. As you all know a tableview in iPhone consist of cell.To draw a cell we will use data source method – (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath

iPhone Development:Add image to UITableViewCell Read More »