首页 > 系统 > iOS > 正文

iOS UITableViewCell 分割线不到左部顶端的问题!

2019-11-09 14:47:53
字体:
来源:转载
供稿:网友

////cell将要显示时调用- (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];    }}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表