关于 UITableViewCell 的 indentation
2019-05-22 本文已影响0人
这个汤圆没有馅
UITableViewCell
的 textLabel
是有一个默认左边距为10px的。实际上,这是由indentationLevel
和 indentationWidth
控制的缘故。indentationLevel
默认为0,indentationWidth
默认为10。
现在重新对这两个属性赋值。
cell.indentationLevel = 2;
cell.indentationWidth = 50;