码迷,mamicode.com
首页 > 编程语言 > 详细

swift tableview的分割线不能到头

时间:2015-09-22 18:27:06      阅读:623      评论:0      收藏:0      [点我收藏+]

标签:

1,设置tableview的separatorInset, layoutMargins

if(myTableView.respondsToSelector("setSeparatorInset:")) {
            myTableView.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0)
        }
        if(myTableView.respondsToSelector("setLayoutMargins:")) {
            myTableView.layoutMargins = UIEdgeInsetsMake(0, 0, 0, 0)
        }

2,设置cell的separatorInset, layoutMargins

    func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
        if(cell.respondsToSelector("setSeparatorInset:")) {
            cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0)
        }
        if(cell.respondsToSelector("setLayoutMargins:")) {
            cell.layoutMargins = UIEdgeInsetsMake(0, 0, 0, 0)
        }
    }

 

swift tableview的分割线不能到头

标签:

原文地址:http://www.cnblogs.com/shidaying/p/4829516.html

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