码迷,mamicode.com
首页 > 移动开发 > 详细

iOS8下tableView的cell下划线不能从0开始的问题

时间:2014-12-26 12:45:13      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

判断当前设备的系统信息

#define isIOS8 ([[[UIDevice currentDevice] systemVersion] hasPrefix:@"8"])

iOS8下用下面的方法

- (void)setInset:(UITableView *)view cell:(UITableViewCell *)cell

{

    if (view !=nil) {

        if ([view respondsToSelector:@selector(setSeparatorInset:)]) {

            [view setSeparatorInset:UIEdgeInsetsZero];

        }

        

        if ([view respondsToSelector:@selector(setLayoutMargins:)]) {

            [view setLayoutMargins:UIEdgeInsetsZero];

        }

    }

    if (cell !=nil) {

        if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {

            [cell setSeparatorInset:UIEdgeInsetsZero];

        }

        

        if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {

            [cell setLayoutMargins:UIEdgeInsetsZero];

        }

    }

}

 在创建cell的地方调用上面的方法

 if (isIOS8) {

        [self setInset:self.myTableView cell:cell];

    }

    return cell;

 

iOS8下tableView的cell下划线不能从0开始的问题

标签:

原文地址:http://www.cnblogs.com/songwentao/p/4186353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!