博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios8 ios7 tableview cell 分割线左对齐
阅读量:5035 次
发布时间:2019-06-12

本文共 873 字,大约阅读时间需要 2 分钟。

ios8中左对齐代码

//加入如下代码-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{         if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) {        [tableView setSeparatorInset:UIEdgeInsetsZero];    }         if ([tableView respondsToSelector:@selector(setLayoutMargins:)]) {        [tableView setLayoutMargins:UIEdgeInsetsZero];    }         if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {        [cell setLayoutMargins:UIEdgeInsetsZero];    }}

ios7中左对齐代码

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {self.tableView.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);}

如果在ios7中使用nib或者storyboard可通过下图把Separator Insets的模式改为Custom,并且把Left的15改为0 转载请注明:天狐博客 » iOS7 tableview separatorInset cell分割线左对齐

以上内容分别引用  

转载于:https://www.cnblogs.com/programmer-blog/p/4214489.html

你可能感兴趣的文章
16.RDD实战
查看>>
MainFrame知识小结(20120210)—dfsort/syncsort中的数据类型
查看>>
jsp题库 (一)小测(25/21)
查看>>
D - Flip tile
查看>>
Java连接RabbitMQ之创建连接
查看>>
开户vim编程之--cscope支持
查看>>
python数据类型图解
查看>>
C#微信登录-手机网站APP应用
查看>>
HTML5实践 -- iPhone Safari Viewport Scaling Bug
查看>>
一位数据挖掘成功人士 给 数据挖掘在读研究生 的建议
查看>>
Python3.6.0安装
查看>>
hdu1049
查看>>
H5项目常见问题及注意事项
查看>>
索尼(SONY) SVE1512S7C 把WIN8降成WIN7图文教程
查看>>
时间模块 && time datetime
查看>>
jquery自动生成二维码
查看>>
spring回滚数据
查看>>
新浪分享API应用的开发
查看>>
美国专利
查看>>
【JavaScript】Write和Writeln的区别
查看>>