UITableView相关知识点

来源:互联网 发布:魔兽争霸3 原生 mac 编辑:程序博客网 时间:2024/06/06 01:05

1、去除iOS7以上的tableview分割线自动向右偏移15像素

代码

代码块语法遵循标准markdown代码,例如:

// 初始化tableview时执行    if ([self.tableview respondsToSelector:@selector(setSeparatorInset:)])    {        [self.tableview setSeparatorInset:UIEdgeInsetsZero];    }    if ([self.tableview respondsToSelector:@selector(setLayoutMargins:)])    {        [self.tableview setLayoutMargins:UIEdgeInsetsZero];    }// 代理方法中执行- (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];    }}
0 0
原创粉丝点击