为什么我不能在自定义单元格中为UIImageView创建@IBOutlet

时间:2018-10-25 21:04:18

标签: swift xcode

使用TabelViewCell在另一个TableView中的同一项目中进行了尝试,这也是一个错误。在另一个项目中,没有这样的错误。 enter image description here

1 个答案:

答案 0 :(得分:2)

您正在尝试创建一个在object-c桥接UITableViewCell类(不推荐使用)中存在的属性

https://developer.apple.com/documentation/uikit/uitableviewcell/1623213-image?language=objc

@property(nonatomic, strong) UIImage *image;

这是一些您无法覆盖的属性

  

textLabel

     

detailTextLabel

     

imageView

     

图片