gpt4 book ai didi

iphone - 具有分配属性的属性委托(delegate)的现有实例变量委托(delegate)必须是 unsafe_unretained

转载 作者:行者123 更新时间:2023-12-03 20:14:39 26 4
gpt4 key购买 nike

出现错误

@protocol TapDetectingImageViewDelegate;

@interface TapDetectingImageView : UIImageView {
id <TapDetectingImageViewDelegate> tapDelegate;

@property (nonatomic, assign) id <TapDetectingImageViewDelegate> tapDelegate;

@synthesize tapDelegate;

尝试了一切,比如

 _weak id <TapDetectingImageViewDelegate> tapDelegate;

@property (weak) id <TapDetectingImageViewDelegate> tapDelegate;

甚至也尝试过这个

_unsafe_unretained id <TapDetectingImageViewDelegate> tapDelegate;

@property (_unsafe_unretained) id <TapDetectingImageViewDelegate> tapDelegate;

甚至尝试删除实例变量定义,因为在使用 ARC 模式时合成会处理它。

但仍然没有任何方法可以消除此错误。

如果有人能帮我解决这个错误。

谢谢。

最佳答案

我是 Obj-C 新手,我找到了这个解决方案 https://stackoverflow.com/a/10080387/3867557您的代码应如下所示:

@protocol TapDetectingImageViewDelegate;
@interface TapDetectingImageView : UIImageView
@property (nonatomic, assign) id <TapDetectingImageViewDelegate> tapDelegate;

希望有帮助。

关于iphone - 具有分配属性的属性委托(delegate)的现有实例变量委托(delegate)必须是 unsafe_unretained,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15508230/

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