, , . , , , , internalDelegate , .
, , nil internalDelegate. , , - .
@property (nonatomic, weak) LoginVC *weakSelf;
- weakSelf self
- (id)init {
if ((self = [super init])) {
self.weakSelf = self;
}
}
- (void)setDelegate:(id)delegate {
_internalDelegate = delegate;
[super setDelegate:self.weakSelf];
}