码迷,mamicode.com
首页 > 其他好文 > 详细

UITableViewCell 分割线如何满屏

时间:2016-01-13 15:46:40      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

在iOS7中,UITableViewCell左侧会有默认15像素的空白。设置setSeparatorInset:UIEdgeInsetsZero 能将空白去掉。

但是在iOS8中,设置setSeparatorInset:UIEdgeInsetsZero 已经不起作用了。下面是解决办法

在UITableView的代理方法中加入以下代码 

 1 - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
 2 
 3 {
 4 
 5     if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
 6 
 7         [cell setSeparatorInset:UIEdgeInsetsZero];
 8 
 9     }
10 
11     if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
12 
13         [cell setLayoutMargins:UIEdgeInsetsZero];
14 
15     }
16 
17 }    

 

UITableViewCell 分割线如何满屏

标签:

原文地址:http://www.cnblogs.com/qq744890760/p/5127264.html

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