SoFunction
Updated on 2025-04-03

Detailed explanation of the example of IOS method to avoid self-cycle references

Detailed explanation of the example of IOS method to avoid self-cycle references

Sample code:

// - weak & strong 
#define myWeakify(VAR) \ 
try {} @finally {} \ 
__weak __typeof__(VAR) VAR##_myWeak_ = (VAR) 
 
#define myStrongify(VAR) \ 
try {} @finally {} \ 
__strong __typeof__(VAR) VAR = VAR##_myWeak_ 
 
#define myStrongifyRetVIfNil(VAR, RET) \ 
try {} @finally {} \ 
__strong __typeof__(VAR) VAR = VAR##_myWeak_;\ 
if(VAR == nil) return RET 
 
#define myStrongifyRetNIfNil(VAR) \ 
try {} @finally {} \ 
__strong __typeof__(VAR) VAR = VAR##_myWeak_;\ 
if(VAR == nil) return 

Use as follows:

- (void)handleFromVC 
{ 
  NSArray *viewControllers = ; 
  @myWeakify(self); 
  [viewControllers enumerateObjectsWithOptions:NSEnumerationReverse usingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) { 
    @myStrongifyRetNIfNil(self); 
    //Code  }]; 
} 

If you have any questions, please leave a message or go to the community of this website to exchange and discuss. Thank you for reading. I hope this article can help you. Thank you for your support for this website!