可是在ios8中,設置setSeparatorInset:UIEdgeInsetsZero 已經不起做用了。下面是解決辦法:
首先在viewDidLoad方法加入如下代碼:
if(leftTable!.respondsToSelector("setLayoutMargins:")){
leftTable?.layoutMargins=UIEdgeInsetsZero
}
if(leftTable!.respondsToSelector("setSeparatorInset:")){
leftTable!.separatorInset=UIEdgeInsetsZero;
}
而後在UITableView的代理方法中加入如下代碼:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let Identifier="MultilevelTableViewCell";
var cell=tableView.dequeueReusableCellWithIdentifier(Identifier);ios
if(cell == nil){spa
cell=UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier:Identifier)代理
}xml
if(cell!.respondsToSelector("setLayoutMargins:")){
cell!.layoutMargins=UIEdgeInsetsZero
}
if(cell!.respondsToSelector("setSeparatorInset:")){
cell!.separatorInset=UIEdgeInsetsZero;
}
return cell!
}
這樣不出意外的話,Table的分割線就沒有空白間距了。