合成错误“缺少属性实现声明的上下文”

发布于 2024-11-29 04:23:01 字数 57 浏览 2 评论 0原文

有人有什么想法吗?当我尝试合成我在 .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 技术交流群。

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

发布评论

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

评论(2

三生殊途 2024-12-06 04:23:01

当您尝试合成类实现范围之外的属性时,可能会发生这种情况。

错误:

@synthesize yourProperty;
@implementation YourClass
@end

正确:

@implementation YourClass
@synthesize yourProperty;
@end

This can happen when you attempt to synthesize a property outside of the scope of your class' implementation.

Incorrect:

@synthesize yourProperty;
@implementation YourClass
@end

Correct:

@implementation YourClass
@synthesize yourProperty;
@end
深居我梦 2024-12-06 04:23:01

当您使用 #import 且不在文件顶部时,经常会发生这种情况。

It often happen when you use #import ,and does not on the top of file.

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