UITableViewCell 中灵活高度的图像
我有一个可变高度的表格视图单元格。如何将图像放置在表格单元格的中间(垂直)?有什么方法可以从IB设置吗?或者我可以用代码来做吗?
I have a table view cell of variable height.How can I place an image at the middle (vertically) of the table cell ? Is there any way to set from IB ? or can i do it in codes ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
UITableViewCell
上的文档。您可以通过以下方式直接设置图像:如果您使用的是 iPhone SDK 3.0。如果您正在为 2.0 编写,则需要使用:
但这在 3.0 中已弃用。
Check the documentation on
UITableViewCell
. You can directly set the image in the following way:if you're using iPhone SDK 3.0. If you're writing for 2.0, you need to use:
but this is deprecated in 3.0.