UITableViewCell 中令人费解的 UIImageView 行为
我目前正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您自己创建对象,否则永远不要调用
-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 withcell.imageView.image = [UIImage...];
.