合成错误“缺少属性实现声明的上下文”
有人有什么想法吗?当我尝试合成我在 .h 文件中声明的属性时,它不允许我合成它。有什么想法吗?谢谢!
Anyone have any ideas? When I try to synthesize a property I have declared in the .h file its not letting me synthesize it. Any ideas? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您尝试合成类实现范围之外的属性时,可能会发生这种情况。
错误:
正确:
This can happen when you attempt to synthesize a property outside of the scope of your class' implementation.
Incorrect:
Correct:
当您使用
#import
且不在文件顶部时,经常会发生这种情况。It often happen when you use
#import
,and does not on the top of file.