UITableView和UITableViewCell的几种样式

一、系统自己的UITableView样式有两种:

1.UITableViewStylePlain:Plain样式的是方形的,充满你给的view.frame坐标。

2.UITableViewStyleGrouped:Grouped样式主要是以圆角形显示,支持分组显示。

二、系统自己的UITableViewCell样式有四种:

1.UITableViewCellStyleDefault:

UITableView和UITableViewCell的几种样式_第1张图片

Default样式:左边一个显示图片的imageView,一个标题textLabel,没有detailTextLabel。

2.UITableViewCellStyleSubtitle:

UITableView和UITableViewCell的几种样式_第2张图片

Subtitle样式:左边一个显示图片的imageView,上边一个主标题textLabel,一个副标题detailTextLabel。主标题字体大且加黑,副标题字体小在主标题下边。

3.UITableViewCellStyleValue1:

UITableView和UITableViewCell的几种样式_第3张图片

Value1样式:左边一个显示图片的imageView,左边一个主标题textLabel,右边一个副标题detailTextLabel,主标题字体比较黑。

4.UITableViewCellStyleValue2:

UITableView和UITableViewCell的几种样式_第4张图片

Value2样式:左边一个主标题textLabel字体偏小,挨着右边一个副标题detailTextLabel,字体大且加黑。

 在最前头的image可以通过cell.imageView设置

右边的图标通过cell.accessoryType设置

//取消UITableViewCell选中的状态

UITableViewCell.selectionStyle=UITableViewCellSelectionStyleNone;


你可能感兴趣的:(iOS)