码迷,mamicode.com
首页 > 移动开发 > 详细

IOS中UITableview的两种Header view

时间:2014-08-22 16:11:18      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   2014   div   

UITableview中可以通过

1 UITableView *_tableView;
2 _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) style:UITableViewStyleGrouped];

来生成一个表格,在style中有两个类型可以选择

1 typedef NS_ENUM(NSInteger, UITableViewStyle) {
2     UITableViewStylePlain,                  // regular table view
3     UITableViewStyleGrouped                 // preferences style table view
4 };

其中 

UITableViewStylePlain 类型的对应下面这个样式, headerview会处于悬浮状态,与cell有区别。

bubuko.com,布布扣

 

UITableViewStyleGrouped 对应的下面这个样式, headerview不会处于悬浮状态,跟cell一样会移动上去。

bubuko.com,布布扣

两个样式的对比

bubuko.com,布布扣

 

 



IOS中UITableview的两种Header view

标签:style   blog   http   color   os   io   ar   2014   div   

原文地址:http://www.cnblogs.com/huangzizhu/p/3929467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!