如何将TableView的样式设置为“UITableViewCellStyleSubtitle”。这样我就可以用它在UITABLE中显示为子标题
答案 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;
}