March 2012
Beginner
338 pages
7h 53m
English
Using UITableView's built-in standard cell types is a great way to get up and running quickly. But pretty soon you're going to run up against the limitations of the standard look and feel and want to move beyond the typical layouts.
Creating and using custom cells isn't difficult, and builds on all the topics that we've covered so far. There are three main ways of customizing cells:
contentViewUITableViewCellThe three methods complement each other. In this chapter, you'll look at the first two. Then in Chapter 9, you'll take a detailed look at custom subclasses.
The two approaches in ...