UITableViewCell 中灵活高度的图像

发布于 2024-08-06 12:12:19 字数 71 浏览 3 评论 0原文

我有一个可变高度的表格视图单元格。如何将图像放置在表格单元格的中间(垂直)?有什么方法可以从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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩人痒 2024-08-13 12:12:19

查看 UITableViewCell 上的文档。您可以通过以下方式直接设置图像:

[[myTableViewCell imageView] setImage: myImage];

如果您使用的是 iPhone SDK 3.0。如果您正在为 2.0 编写,则需要使用:

[myTableViewCell setImage: myImage];

但这在 3.0 中已弃用。

Check the documentation on UITableViewCell. You can directly set the image in the following way:

[[myTableViewCell imageView] setImage: myImage];

if you're using iPhone SDK 3.0. If you're writing for 2.0, you need to use:

[myTableViewCell setImage: myImage];

but this is deprecated in 3.0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文