iPhone TableView:定义单元格中图像和文本之间的填充
有谁知道如何垂直对齐这些文本元素。我想为文本定义一个绝对的左填充,它不受每个图像尺寸的影响。像这样很烦人:
非常感谢!
does anybody know how to vertically align these text elements. I would like to define an absolute left padding for the text which is not affected by each image dimensions. It's quite annoying like this:
thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你有两个选择。
1)
UITableViewCell
有一个textLabel
属性,您可以访问和调整框架。有关详细信息,请参阅 Apple 文档UITableViewCell
上的信息2) 您可以确保所有图标具有相同的宽度。
You have two options.
1)
UITableViewCell
has atextLabel
property which you can access and adjust the frame. See the Apple docs for more info onUITableViewCell
2) You can ensure that all of your icons have the same width.
您可以通过选择 UIImage、UILabel 或两者上的框架来完成此操作。将浮动 x 设置为距标签左侧的安全距离,或将最宽图像的宽度指定为 UIImage 框架的宽度。
如果需要,当我不在手机上时,我可以澄清更多信息。
You could do it by slecifying the frame on your UIImage, UILabel, or both. Set the float x to a safe distance from the left on the label or specify the width of your widest image as the width of the UIImage frame.
I can clarify more if needed when I'm not on my mobile.