博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【iOS开发系列】cell切割线置顶
阅读量:5370 次
发布时间:2019-06-15

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

废话不多说,直接上代码:
/** *  tableViewCell切割线左側置顶 < 1 > */-(void)viewDidLayoutSubviews{    if ([_tableView respondsToSelector:@selector(setSeparatorInset:)])    {        [_tableView setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)];    }        if ([_tableView respondsToSelector:@selector(setLayoutMargins:)])    {        [_tableView setLayoutMargins:UIEdgeInsetsMake(0, 0, 0, 0)];    }}

/** *  tableViewCell切割线左側置顶<2> */-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{    if ([cell respondsToSelector:@selector(setSeparatorInset:)])    {        [cell setSeparatorInset:UIEdgeInsetsZero];    }        if ([cell respondsToSelector:@selector(setLayoutMargins:)])    {        [cell setLayoutMargins:UIEdgeInsetsZero];    }}
在tableView的xib中仅仅是找到了 setSeparatorInsets 设置了,在cell中的xib中也找到相同设置了。可是没有出效果 。

难道在xib中也应该找到setLayoutMargins?可是没有找到。哪位大神看到了是否能给个指点。

转载于:https://www.cnblogs.com/yangykaifa/p/7196426.html

你可能感兴趣的文章
进阶4:常见函数-单行函数
查看>>
简述企业信息化与企业架构关系
查看>>
npoi List 泛型导出
查看>>
流程图怎么画?分享绘制流程图简单方法
查看>>
squid的处理request和reply的流程
查看>>
硬件_陀螺仪
查看>>
三、winForm-DataGridView操作——DataGridView 操作复选框checkbox
查看>>
SSIS的部署和配置
查看>>
计算机内存管理介绍
查看>>
POJ 2761 Feed the dogs 求区间第k大 划分树
查看>>
mysql中间件研究(Atlas,cobar,TDDL)[转载]
查看>>
ASP.NET应用程序与页面生命周期
查看>>
Linux--多网卡的7种Bond模式
查看>>
Oracle命令(一):Oracle登录命令
查看>>
业务建模 之 业务用例图
查看>>
EasyUI基础入门之Pagination(分页)
查看>>
一次PHP代码上线遇到的问题
查看>>
显示密码
查看>>
实现one hot encode独热编码的两种方法
查看>>
ubuntu中文英文环境切换
查看>>