您在UITableViewController中使用什么命令来获取下面的行标题(移动,工作,生日等)?我一直在寻找特定的实例或方法,我似乎无法找到它。是否需要额外的格式,并且可以在没有xib的情况下完成吗?任何帮助将不胜感激。谢谢!
答案 0 :(得分:3)
行标题?你的意思是“移动”,“工作”等等?当您使用UITableViewCellStyleValue2
作为tableViewCell的样式
if (!cell) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = @"mobile";
cell.detailTextLabel.text = @"(888) 555-5512";