UITableView的两种样式对比

2016-11-25  本文已影响0人  成功没有捷径_LBQ

UITableView的两种样式对比:

UITableViewStyleGrouped:

Cell之间有间距

注意:去掉头部和中间间隔

正确的理解方法

1.设置标头的高度为特小值 (不能为零 为零的话苹果会取默认值就无法消除头部间距了)

UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0,0, self.view.frame.size.width, 0.001)];

view.backgroundColor = [UIColor redColor];

self.tableView.tableHeaderView = view;

2.写代理方法(中间的留白其实是段尾的高度 代理的作用设置段尾的高度 返回值也不能为0)

-(CGFloat)tableView:(UITableView *)tableViewheightForFooterInSection:(NSInteger)section

{

return 0.01f;

}

特殊的处理方法也能实现该效果

  1. self.tableView.contentInset = UIEdgeInsetsMake(-44, 0, 0, 0);

2.重写UITableViewHeaderFooterView的

-(void)setFrame:(CGRect)frame{

frame.size.height+=10;

[super setFrame:frame];

}

例如:

_themeTable= [[UITableViewalloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height- 70) style:UITableViewStyleGrouped];

UITableViewStylePlain

Cell之间没有间距

1.有多段时 段头停留(自带效果)

2.没有中间的间距和头部间距(要想有的重写UITableViewCell \UITableViewHeaderFooterView里面的setFrame方法)

扩展:让段头不停留(取消粘性效果)

}

例如:

_themeTable= [[UITableViewalloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width,self.view.frame.size.height - 70) style:UI

TableViewStylePlain];

分组样式一般用于静态表,用于界面布局,分组样式会把表分成很多“孤岛”,这些孤岛由一些类似的单元格组成。

了解了table的两种样式,以后根据需要来使用

不等高cell的情况下

UITableViewCell 是自定义的话

使用纯代码的方式:

  1.     先在viewController里面的heightforRow方法里面 确定cell的高度(不确定cell的高度,运行出来会混乱);
    
  2.      然后在自定义的cell类里面 重新写layoutSubviews方法,在里面设置子控件的位置及尺寸大小,若不重写这个方法,到时候cell内容显示不出来 只会显示不等高cel的高度
    

若使用的是xib的方式,可以在xib里面设置好子控件约束的大小及位置,然后就可以不用再layoutSubviews方法设置子控件的尺寸和大小了

计算cell高度可以选择自适应storyboard情况下:

// self-sizing (iOS8以上)

// 告诉tableView所有cell的真实高度是自动计算的(根据设置的约束去自动计算)

self.tableView.rowHeight= UITableViewAutomaticDimension;



// 告诉tableView的估算高度

self.tableView.estimatedRowHeight= 44;
上一篇 下一篇

猜你喜欢

热点阅读