gpt4 book ai didi

iphone - 尽管标记了文件 -fno-objc-arc,但 ARC 禁止在结构或联合中使用 Objective-C 对象

转载 作者:IT老高 更新时间:2023-10-28 11:21:29 25 4
gpt4 key购买 nike

ARC 禁止在结构或联合中使用 Objective-C 对象,尽管标记了文件 -fno-objc-arc?为什么会这样?

我假设如果你标记它 -fno-objc-arc 你没有这个限制。

最佳答案

如果您收到此消息,请尝试 __unsafe_unretained。只有在结构中的对象未被保留时,它才是安全的。示例:如果您将 OpenFeint 与 ARC 一起使用,则 OFBragDelegateStrings 类会在结构中显示此错误。

typedef struct OFBragDelegateStrings
{
NSString* prepopulatedText;
NSString* originalMessage;
} OFBragDelegateStrings;

typedef struct OFBragDelegateStrings
{
__unsafe_unretained NSString* prepopulatedText;
__unsafe_unretained NSString* originalMessage;
} OFBragDelegateStrings;

关于iphone - 尽管标记了文件 -fno-objc-arc,但 ARC 禁止在结构或联合中使用 Objective-C 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8093099/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com