[iOS开发]Cell的四种style

官方文档介绍

[iOS开发]Cell的四种style_第1张图片

第一种 value1模式:

主标题在最左边,副标题在最右边。主标题和副标题都是居中对齐。并且可以添加一个图片在最左边,底部像素为1的横线到图片的最右边,它不敢越过图片区域,因为那一块是图片的区域,不允许任何控件踏入。主要用于各个APP设置
[iOS开发]Cell的四种style_第2张图片

UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
cell.textLabel.text = @"1";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"HH:mm"]; 
cell.detailTextLabel.text = [dateFormatter stringFromDate:[[Date alloc]init];

第二种 value2模式:

主标题和副标题在0.618的位置,统称黄金分割,黄金分割是一种数学上的比例关系。黄金分割具有严格的比例性、艺术性、和谐性,蕴藏着丰富的美学价值。主要用于像手机通讯录这样的界面
[iOS开发]Cell的四种style_第3张图片

UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:@"cell"];
cell.textLabel.text = @"1";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"HH:mm"]; 
cell.detailTextLabel.text = [dateFormatter stringFromDate:[[Date alloc]init];

第三种 subtitle模式:

主标题和副标题左边对齐,主标题在上 副标题在下。并且可以添加一个图片,下面的横线是不到图片区域的。微信的聊天列表就是这样的UI,左边放一个头像,主标题放昵称,副标题放最后一句文字。
[iOS开发]Cell的四种style_第4张图片

UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"cell"];
cell.textLabel.text = @"1";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"HH:mm"]; 
cell.detailTextLabel.text = [dateFormatter stringFromDate:[[Date alloc]init];

第四种 default模式:

这种模式只有一个主标题在最左边居中。UITableViewCell里面还有很多属性 比如cell.accessoryView = [[UISwitch alloc]init]效果如图。如果你想做好几个控件放accessoryView,那就用UIView包着cell.accessoryView =UIView
[iOS开发]Cell的四种style_第5张图片

UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
cell.textLabel.text = @"1";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"HH:mm"]; 
cell.detailTextLabel.text = [dateFormatter stringFromDate:[[Date alloc]init];

你可能感兴趣的:(ios,objective-c)