UITableView分组样式中的行标题

时间:2011-03-07 12:03:45

标签: iphone uitableview

您在UITableViewController中使用什么命令来获取下面的行标题(移动,工作,生日等)?我一直在寻找特定的实例或方法,我似乎无法找到它。是否需要额外的格式,并且可以在没有xib的情况下完成吗?任何帮助将不胜感激。谢谢!

http://i.stack.imgur.com/Sz5pP.jpg

1 个答案:

答案 0 :(得分:3)

行标题?你的意思是“移动”,“工作”等等?当您使用UITableViewCellStyleValue2作为tableViewCell的样式

时,这些标题是textLabel对象
if (!cell) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = @"mobile";
cell.detailTextLabel.text = @"(888) 555-5512";