UITable里的分割线

到了iOS8上,发现uitable是越来越不会用了;不说了,先看一下截屏效果:

设计期望的效果是:

1,自定义一个单元格,背景是黄色的;期望铺满整个表格单元;

2,单元分割线是贯通;


现实与理想的差别如下:

1,黄颜色单元格没能横向铺满整个单元;

2,分割线右侧没有拉到头;

3,我只花了三个单元格;没有充满的空间,OS里也画上了分割线。


这是我的解决方法:

解决问题1的方式是:

设置table的边距:[tableView setLayoutMargins:UIEdgeInsetsMake(0, 0, 0, 0)]; 

这是iOS8上新出的特性,所以这个问题在iOS7上没有的。


解决问题2和3的方式是:

第一步:设置统一设置表格的分割线留空     [tableView setSeparatorInset:UIEdgeInsetsMake(0, 1000, 0, 0)];

这里设置分割线横行留空1000个像素,这个的目的是为了让所有的分割线画到视图之外,这样子可以让iOS自动补上的分割线都不可见了。


第二步:针对每个单元格设置留空:

    [cell setSeparatorInset:UIEdgeInsetsMake(0, 0, 0, 0)];
    [cell setLayoutMargins:UIEdgeInsetsMake(0, 0, 0, 0)];

这样可以让我们需要的单元格分割线回到视图中。


[objc]  view plain copy
  1. #import "ViewController.h"  
  2.   
  3. #import "DemoCell.h"  
  4.   
  5. @interface ViewController ()  
  6. {  
  7.     IBOutlet UITableView *tableView;  
  8. }  
  9. @end  
  10.   
  11. @implementation ViewController  
  12.   
  13. - (void)viewDidLoad {  
  14.     [super viewDidLoad];  
  15.     // Do any additional setup after loading the view, typically from a nib.  
  16.   
  17.     //以下两行为关键代码  
  18. <strong>    [tableView setLayoutMargins:UIEdgeInsetsMake(0000)];  
  19.     [tableView setSeparatorInset:UIEdgeInsetsMake(0100000)];</strong>  
  20.       
  21.     [tableView setSeparatorColor:[UIColor redColor]];  
  22. }  
  23.   
  24. - (void)didReceiveMemoryWarning {  
  25.     [super didReceiveMemoryWarning];  
  26.     // Dispose of any resources that can be recreated.  
  27. }  
  28.   
  29. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section  
  30. {  
  31.     return 3;  
  32. }  
  33.   
  34. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath  
  35. {  
  36.     DemoCell *cell =  (DemoCell*)[[[NSBundle mainBundle] loadNibNamed:@"DemoCell" owner:self options:nil] lastObject];  
  37.       
  38.     //以下两行为关键代码  
  39. <strong>    [cell setSeparatorInset:UIEdgeInsetsMake(0000)];  
  40.     [cell setLayoutMargins:UIEdgeInsetsMake(0000)];  
  41. </strong>  
  42.     return cell;  
  43. }  
  44.   
  45. @end  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值