gpt4 book ai didi

iphone - 获取 unsafe_unretained 属性错误

转载 作者:搜寻专家 更新时间:2023-10-30 19:50:23 26 4
gpt4 key购买 nike

 id delegate;

@property (nonatomic, assign) id delegate;

我遇到了这个错误; unsafe_unretained 属性“delegate”的现有 ivar“delegate”必须是 __unsafe_unretained

我尝试将代码更改为以下内容,但我一直收到相同的错误。

__weak id delegate;

@property (nonatomic,weak) id delegate;

当我将其更改为 strong 时,它会起作用,但我认为这不是正确的方法

id delegate;

@property (nonatomic,strong) id delegate;

最佳答案

尝试按照编译器的建议使 ivar 不安全-不保留。

{
__unsafe_unretained id delegate;
}
@property(nonatomic, assign) id delegate;

或者干脆不声明ivar,让系统在@synthesize中生成。

关于iphone - 获取 unsafe_unretained 属性错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8871084/

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