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

IOS tableview 消除 分割线短 15 像素 ios8方法 swift版

时间:2015-07-13 00:46:11      阅读:390      评论:0      收藏:0      [点我收藏+]

标签:

系统默认样式:

技术分享 

ios8 去除默认分割线边距的代码:

    //去除表格左侧分割线代码开始
    func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
        //ios8
        if cell.respondsToSelector("setSeparatorInset:"){
            cell.separatorInset = UIEdgeInsetsZero
            tableView.separatorInset = UIEdgeInsetsZero
            //cell.separatorInset.left = 5
        }
        
        if cell.respondsToSelector("setLayoutMargins:"){
            cell.layoutMargins = UIEdgeInsetsZero
            tableView.layoutMargins = UIEdgeInsetsZero
            //cell.separatorInset.left = 5
        }
    }
    //

IOS tableview 消除 分割线短 15 像素 ios8方法 swift版

标签:

原文地址:http://www.cnblogs.com/toxufe/p/4641751.html

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