混合附件视图时的 UITableViewCell 文本对齐
我在 UITableViewCell 上有一个自定义背景图像。我已经将文本集中在该单元格中。在某些行上,我设置了 UITableViewCellAccessoryDetailDisclosureButton 来指示该行有详细信息。
但是,使用该附件类型会导致文本向左移动,但我的背景图像保持在中央。有没有办法可以在表格单元格内的标签上添加一些填充,以将文本推回到中间,以便它与其他行对齐。
我知道添加附件会使内容视图变小,因此它仍然以技术为中心,但我需要它来匹配其他附件。
I've got a custom background image on a UITableViewCell. I've got the text centered in that cell. On certain rows, I've got the UITableViewCellAccessoryDetailDisclosureButton set to indiciate there are details for that row.
However, using that accessory type causes the text to shift to the left, but my background image stays central. Is there a way I can add some padding to the label inside the tablecell to push the text back into the middle, so it lines up with the other rows.
I understand that adding an accessory makes the content view smaller, and so it is still technically centered, but I need it to match the others.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个正确大小的空视图(不确定那是什么……20x20?)并将
accessoryView
设置为它。Create an empty view of the correct size (not sure what that is ... 20x20?) and set the
accessoryView
to it.