去掉左侧默认的15像素空白

//去掉左侧默认的15像素空白

    if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) {
        [tableView setSeparatorInset:UIEdgeInsetsZero];
    }
    if ([tableView respondsToSelector:@selector(setLayoutMargins:)]) {
        [tableView setLayoutMargins:UIEdgeInsetsZero];
    }

你可能感兴趣的:(去掉左侧默认的15像素空白)