2017-03-14 72 views

回答

0

有些情況下,就可以解決這個問題的方法有兩種。

第一個可以在單元格內容視圖中添加分隔線視圖。我們可以通過下面的代碼來創建一個UIView對象:UIView * line = [[UIView alloc] initWithFrame:CGRectMake(0,0,tableview.frame.size.width,3)];
line.backgroundColor = [UIColor whiteColor];

[cell.contentView addSubview:line];

第二個是提供一個非常簡單的蘋果也只需添加這行代碼,其中u聲明你的tableview

yourTableView.cellLayoutMarginsFollowReadableWidth = NO;

2

您可以使用下面的代碼在你UITableView添加分隔

UIView* separatorLineView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 3)];/// change size as you need.  
separatorLineView.backgroundColor = [UIColor whiteColor];// you can also put image here 
[cell.contentView addSubview:separatorLineView]; 

並刪除UITableView的默認分隔符。希望能幫助到你。

+0

是的,thx。我知道自定義分隔線很好。但我想知道爲什麼系統分隔線有插入。 –

相關問題