私はARCを初めて使用しますが、情報が見つからなかった質問はほとんどありません。
コミュニケーションクラスを書いていますが、サードパーティのクラスにプロパティを追加したいと思います。私は自分の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
私の質問は、別のファイル(my)で拡張された場合でも、ARCはこれらのプロパティをリリースしますcommunicationClass.h
か?