UITableView样式和UITableViewCell样式

--系统自己的UITableView样式有两种。

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

》  UITableViewStyleGrouped: Grouped样式主要是以圆角形显示。跟iphone自带的通讯录编辑页面类似。

--系统自己的UITableViewCell样式有四种。

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

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

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

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


你可能感兴趣的:(UITableView样式和UITableViewCell样式)