與UITableViewCellStyleSubtitle
樣式有關的UITableViewCell
,我設置了imageView.image
,textLabel.text
和detailTextLabel.text
。牢房周圍有白色的填充物。我如何擺脫填充,以便我所有的圖像都像下面的Youtube應用程序那樣相互接觸?刪除UITableViewCell上的填充
2
A
回答
8
可能做到這將是繼承UITableViewCell
和覆蓋-layoutSubviews
方法,這樣做最簡單的方法:
- (void)layoutSubviews {
//have the cell layout normally
[super layoutSubviews];
//get the bounding rectangle that defines the position and size of the image
CGRect imgFrame = [[self imageView] frame];
//anchor it to the top-left corner
imgFrame.origin = CGPointZero;
//change the height to be the height of the cell
imgFrame.size.height = [self frame].size.height;
//change the width to be the same as the height
imgFrame.size.width = imgFrame.size.height;
//set the imageView's frame (this will move+resize it)
[[self imageView] setFrame:imgFrame];
//reposition the other labels accordingly
}
+0
此方法完美。有時它還需要調用子視圖上的layoutSubviews,特別是在調整寬度或高度時。 – 2011-09-22 06:14:18
1
嘗試減少在界面生成器或代碼的UITableView的行高所以沒有填充。 我不得不在tableview的界面生成器中增加填充。 但是Daves的答案可能會讓您更好地控制修改單元格視圖。
2
只是刪除表分隔符:
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
+0
偉大的解決方案!謝謝! – 2013-08-08 00:20:41
0
在iOS8上你可以設置
tableView.layoutMargins = UIEdgeInsets.zero
代碼,或從界面生成器。
相關問題
- 1. UITableViewCell imageView填充
- 2. Java:刪除JTabbedPane上的邊距/填充
- 3. 刪除欄柱上方的填充
- 4. 如何刪除/調整UITableViewCell的單元格填充/邊距?
- 5. 刪除未填充的UITableViewCells?
- 6. 無法填充的UITableViewCell
- 7. 刪除TabLayout左右填充
- 8. UIWebview刪除填充/餘量
- 9. 從SVG中刪除「填充」?
- 10. 刪除填充數據
- 11. 刪除邊距或填充?
- 12. cant刪除填充css
- 13. Android TableLayout刪除填充
- 14. wpf刪除datagrid左填充
- 15. 刪除填充SWF文件
- 16. Winforms線圖 - 刪除填充
- 17. 刪除chart.js之圖填充
- 18. 刪除JavaFX按鈕填充?
- 19. 從GridViewItem刪除填充
- 20. C# - 刪除位圖填充
- 21. 用JSON Base64填充UITableViewCell?
- 22. 如何使UIImageView填充UITableViewCell?
- 23. UITableViewCell給填充兩邊
- 24. 通過故事板刪除UITableViewCell中的內容視圖的填充
- 25. 刪除wxPython的wxWizard中的填充
- 26. 刪除谷歌圖表中的填充?
- 27. 刪除A標記中的填充
- 28. 如何刪除QTabWidget的「填充」?
- 29. 刪除/編輯TabControl的TabControl填充
- 30. 刪除SSIS中的左填充零
您應該將@ Borut的答案標記爲工作答案,因爲它更簡單並且是您問題的主要原因。 – Dario 2013-08-09 17:23:48
浪費了一整天的時間!此解決方案也適用於我:http://stackoverflow.com/questions/19103155/ios7-tableview-cell-imageview-extra-padding – Jason 2016-02-19 23:03:15