1
A
回答
2
從細胞中刪除所有邊距設置。嘗試將所有這些到細胞中
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
// Remove insets in UITableViewCell separator
// Remove seperator inset
if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
cell.separatorInset = UIEdgeInsetsZero;
}
// Prevent the cell from inheriting the Table View's margin settings
if ([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]) {
cell.preservesSuperviewLayoutMargins = NO;
}
// Explictly set cell's layout margins
if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
cell.layoutMargins = UIEdgeInsetsZero;
}
相關問題
- 1. 用寬度等於表格視圖分隔符寬度創建視圖
- 2. 列表視圖分隔線保證金
- 3. 動畫列表視圖分隔線
- 4. 帶固定寬度列的表格 - 不指定表格寬度
- 5. 指定繪圖的寬度和高度
- 6. aspnet表 - 指定TableCell寬度?
- 7. Android的 - 列表視圖分頻器與特定寬度
- 8. HTML/PHP - 表單元格分隔寬度
- 9. 「線條」視圖的最大寬度
- 10. 如何雙擊分隔視圖來調整寬度
- 11. 確定視圖的寬度和高度
- 12. 如何指定自定義視圖的寬度?
- 13. 拆分視圖分爲四個子視圖與25%的寬度
- 14. UItableview分隔線的高度
- 15. 如何指定NSSplitView窗格/子視圖的寬度
- 16. 設置視圖的寬度大於父視圖的寬度?
- 17. 創建具有特定寬度和高度的表格視圖
- 18. iPhone分組視圖的邊界線沒有分隔線
- 19. 圖表boundingRect包括線條的寬度
- 20. Android佈局:兩個固定寬度視圖之間的可變寬度視圖
- 21. 如何使用onDraw指定自定義視圖的高度/寬度?
- 22. 如何設置ListView分隔線的寬度?
- 23. JFreeChart - 圖表固定寬度
- 24. 如何將浮動圖表中的刻度線分隔開?
- 25. 網格視圖綁定域的寬度
- 26. 爲分隔的連續表應用相同的表列寬度
- 27. 列表視圖的寬度調整
- 28. 的Android列表視圖寬度概率
- 29. 拆除分隔線; Android的列表視圖(滑動菜單)
- 30. 表中的固定分隔線
==>是移除的tableView的C刪除間距設置 http://stackoverflow.com/questions/19499366/white-space-before-separator-一些利潤率線 - 到 - 我 - 的tableview – Akash