最新消息:关注【已取消】微信公众号,可以获取全套资料,【全套Java基础27天】【JavaEE就业视频4个月】【Android就业视频4个月】

Auto property synthesis will not synthesize property 'conten

IOS 太平洋学习网 0浏览 评论

当我在给一个类设置@property属性的时候,报了如下:“Auto property synthesis will not synthesize property 'contentView' because it is 'readwrite' but it will be synthesized 'readonly' via another property”错误。

之所以有这样的错误,是因为我定义了这样的property属性,而contentView属性是UIView控件内置的属性,如下:

//内容view
@property (nonatomic, strong) UIView *contentView;

根据英文意思我们知道系统UIView控件的contentView属性是readonly只读的,如下:

@property (nonatomic, readonly, strong) UIView *contentView;

而小编我上方定义的内容view是可读可写的(readwrite),因此才报了“Auto property synthesis will not synthesize property 'contentView' because it is 'readwrite' but it will be synthesized 'readonly' via another property”错误。

解决方法:

将自己在一个类中定义的属性重新改一个名字,例如:

@property (nonatomic, strong) UIView *contentView;
改成
@property (nonatomic, strong) UIView *myView;

完美解决!

来源网站:太平洋学习网,转载请注明出处:http://www.tpyyes.com/a/object-c_ios/526.html
"文章很值,打赏犒劳作者一下"
微信号: Javaweb_engineer

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

与本文相关的文章

发表我的评论
取消评论

表情

您的回复是我们的动力!

  • 昵称 (必填)

网友最新评论