搜索
您的当前位置:首页正文

关于UITableViewController

来源:二三娱乐

UITableView:1.Plain:这是普通的列表风格 2.Grouped :这是分块风格。

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

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

UITableView:Section SectionHeader SectionFooter Tablecell  TableHeader TableFooter

UITableViewCell:4中样式:1.UITableViewCellStyleDefault:左边一个显示图片的imageView,一个标题textLabel,没有detailTextLabel。

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

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

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

欢迎加入:iOS开发交流群(570890454)

Top