我是 ARC 的新手,我几乎没有什么问题没有找到相关信息。
我正在编写通信类,我想将属性添加到第 3 方类。我在我的communicationClass.h
:
@interface AFHTTPRequestOperation()
@property (nonatomic, assign) id<TargetProtocol> delegate;
@property (nonatomic, assign) SEL callback;
@property (nonatomic, retain) NSString *requestIdentifier;
@property (nonatomic, assign) int authenticationMode;
@end
属性添加得很好,我使用它们。我的问题是,即使AFHTTPRequestOperation
在不同的文件(我的communicationClass.h
)中扩展,ARC 也会释放这些属性吗?