One Quickie


Tableview subtitle cell (UITableView->General)
The subtitle cell has a large label and a smaller gray-text sublabel.

Make the cell with UITableViewCellStyleSubtitle:

        cell = [[[UITableViewCell alloc]
                    initWithStyle: UITableViewCellStyleSubtitle
                    reuseIdentifier: @"UITableViewCell"] autorelease];
and set the label values:
    cell.textLabel.text = @"somewhere";
    cell.detailTextLabel.text = @"over the rainbow";



borkware home | products | miniblog | rants | quickies | cocoaheads
Advanced Mac OS X Programming book

webmonster@borkware.com