Custom UITableViewCell Layout
At work we were trying to create a custom UITableViewCell. We wanted something that looked like this: Here are some of the factors that made this problem more difficult: Our one custom cell was in a UITableView of regular cells The fonts for each of the items in the cell were pretty consistent with the rest of the table view Like every other cell, we wanted to it to be indented based on cell.separatorInset I looked at several ways to approach this. I tried using a custom table view. I tried subclassing a UITableViewCell. I finally landed on trying to override the tableView:willDisplayCell:forRowAtIndexPath: and it is worth explaining why. ...