我正在使用 xcode6.0.1 。在我的 UIVIew Controller 中包含一个 tableview ,我需要设置分隔符插入全宽。我改变了我的 tableview 分隔符插入通过 xib。但是我无法在我的 xcode6 上获得分隔符插入的全宽(在我的 xcode5 分隔符插入全宽是可能的)。如何解决这个问题?
change tableview separator inset via xib
my tableview separator line like this(not get full width)
Best Answer-推荐答案 strong>
我解决了我的问题
-(void)viewDidLoad{
self.tableView.layoutMargins = UIEdgeInsetsZero;
}
- (void)tableViewUITableView *)tableView willDisplayCellUITableViewCell *)cell forRowAtIndexPathNSIndexPath *)indexPath {
if ([cell respondsToSelectorselector(setLayoutMargins]) {
[cell setLayoutMargins:UIEdgeInsetsZero];
}
}
关于ios - 我的 xcode6 上的 UITableview SepartorInset 全宽问题,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26160636/
|