UITableViewCell 中令人费解的 UIImageView 行为

发布于 2024-11-30 18:46:50 字数 301 浏览 1 评论 0原文

我目前正在 UITableViewCell 中设置 UIImageView,如下所示:

// in cellForRowAtIndexPath method
[cell.imageView initWithImage:[UIImage imageNamed:@"myImage.png"]];

但是 UITableViewCell 上的 imageView 属性是只读。上面的代码可以工作,但是我不明白为什么有什么想法吗?

I'm currently setting the UIImageView in my UITableViewCell like this:

// in cellForRowAtIndexPath method
[cell.imageView initWithImage:[UIImage imageNamed:@"myImage.png"]];

However the imageView property on UITableViewCell is readonly. The code above works but I don't understand why. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

木有鱼丸 2024-12-07 18:46:50

除非您自己创建对象,否则永远不要调用 -init... 。单元格创建自己的图像视图(这就是为什么它是只读的);您只需使用 cell.imageView.image = [UIImage...]; 设置图像即可。

Don't ever call -init... unless you're creating an object yourself. The cell creates its own image view (that's why it's read-only); you can simply set the image with cell.imageView.image = [UIImage...];.

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