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

IOS 8 UITableView cell lines不能靠左解决方法

时间:2014-10-22 17:21:54      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   for   sp   on   问题   ad   bs   

 ios7中用以下方法可使UITableView cell lines靠左

self.tableview.separatorInset = UIEdgeInsetsZero;

但在ios8中该办法已失灵啦

经过翻阅ios8文档发现用以下两种办法即可解决该问题
方法一:
- (void) viewDidLoad { [...] self.tableView.separatorInset = UIEdgeInsetsZero; if ([self.tableView respondsToSelector:@selector(layoutMargins)]) { self.tableView.layoutMargins = UIEdgeInsetsZero; } } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { [...] cell.separatorInset = UIEdgeInsetsZero; if ([cell respondsToSelector:@selector(layoutMargins)]) { cell.layoutMargins = UIEdgeInsetsZero; } }
方法二:
- (UIEdgeInsets)layoutMargins
{
    return UIEdgeInsetsZero;
}


 

IOS 8 UITableView cell lines不能靠左解决方法

标签:io   os   ar   for   sp   on   问题   ad   bs   

原文地址:http://www.cnblogs.com/zhaoguowen/p/4043724.html

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