Chapter 9

Creating Custom Cells with Subclasses

In Chapter 8, you looked at two of the three main ways of creating and configuring custom UITableViewCells:

  • Adding subviews to the cell's built-in contentView
  • Creating a custom cell from scratch and instantiating it from a nib file.

The third approach – which provides the greatest flexibility, albeit at the cost of slightly more complexity – is to create a custom subclass of UITableViewCell.

The main reasons for using this approach is that you need multiple types of cell in the same table, or you want a level of control over the contents that is awkward to achieve by adding subviews.

In this chapter, we will look at the different ways of creating custom cells with UITableViewCell subclasses. ...

Get Pro iOS Table Views for iPhone, iPad, and iPod Touch now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.