博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决tableviewcell 分割线充满屏幕问题
阅读量:5084 次
发布时间:2019-06-13

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

tableview的分割线左对齐 在viewDidLoad方法中加上如下代码:

    if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
[self.tableView setSeparatorInset:UIEdgeInsetsZero];
}
if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {
[self.tableView setLayoutMargins:UIEdgeInsetsZero];
}
然后在willDisplayCell方法中加入如下代码:
- (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];
}
}
这样就可以正常显示了。

转载于:https://www.cnblogs.com/angongIT/p/4241504.html

你可能感兴趣的文章
Ryzom相关的项目简介
查看>>
新版.Net开发必备十大工具(转)
查看>>
noi.ac NA531 【神树和物品】
查看>>
冒泡排序
查看>>
ZZUOJ 10509 组合数学+乘法逆元
查看>>
python【项目】:选课系统【简易版】
查看>>
UESTC--1682
查看>>
error C4430: 缺少类型说明符 - 假定为 int
查看>>
前后端数据交互之格式
查看>>
Hello
查看>>
axios的get,post方法
查看>>
awk条件语句
查看>>
linux下如何启动sybase
查看>>
使用HTML实现对汉字拼音的支持
查看>>
冒泡排序
查看>>
模块 (Module)
查看>>
kmp&扩展kmp
查看>>
我需要在Web上完成一个图片上传的功能后续(+1)
查看>>
PLMN和PSTN
查看>>
Android绘制基础及手写绘制实例
查看>>