如何将TableView的样式设置为“UITableViewCellStyleSubtitle”

时间:2009-12-07 05:07:52

标签: iphone

如何将TableView的样式设置为“UITableViewCellStyleSubtitle”。这样我就可以用它在UITABLE中显示为子标题

1 个答案:

答案 0 :(得分:0)

这不是UITableView的风格,而是UITableViewCell的风格:

- (UITableViewCell *)tableView:(UITableView *)tableView1 cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView1 dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
    }
    ... more stuff

    return cell;
}