GCC 4.2 警告对象不再存在

发布于 2024-11-06 00:15:00 字数 654 浏览 2 评论 0 原文

我有一个名为responseReference的NSString,我将其放入@property中,如下所示...

@property (nonatomic) NSString *responseReference;

我收到了警告:

No 'assign', 'retain', or 'copy' attribute is specified - 'assign' is assumed
Assign attribute (default) not appropriate for non-gc object property 'responseReference'

所以为了简单地修复它,我将代码更改为:

@property (nonatomic, retain) NSString *responseReference;

但我仍然收到警告。我尝试了很多方法,最终试图通过删除该对象来消除警告。但即使当responseReference不再是我的任何代码的一部分时,它仍然给了我完全相同的responseReference警告。所以我重新启动了X-Code。没有豆子。

谁能解释为什么它给我这些警告,即使它所谈论的对象不存在?另外,这些警告是否意味着我编译的代码受到影响?

I had an NSString named responseReference that I put in a @property like so...

@property (nonatomic) NSString *responseReference;

and I got the warning:

No 'assign', 'retain', or 'copy' attribute is specified - 'assign' is assumed
Assign attribute (default) not appropriate for non-gc object property 'responseReference'

So to simply fix it I changed the code to this:

@property (nonatomic, retain) NSString *responseReference;

but I still got the warnings. I tried many things and ended up trying to remove the warnings by just removing the object from existence. But even when responseReference was no longer a part of ANY of my code it still gave me the exact same warning for responseReference. So I restarted X-Code. No beans.

Can anyone explain why it's giving me these warnings even though the object it's talking about doesn't exist? Also, do these warnings mean that my compiled code is affected?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文