Skip to content

Instantly share code, notes, and snippets.

@soapyigu
Created July 21, 2018 23:21
Show Gist options
  • Save soapyigu/9e96cd8336649c9719769932abc75755 to your computer and use it in GitHub Desktop.
Save soapyigu/9e96cd8336649c9719769932abc75755 to your computer and use it in GitHub Desktop.
#import <FBRetainCycleDetector/FBRetainCycleDetector.h>
self.block = ^{
NSLog(@"%@", self);
};
FBRetainCycleDetector *detector = [FBRetainCycleDetector new];
[detector addCandidate:self];
NSSet *retainCycles = [detector findRetainCycles];
NSLog(@"%@", retainCycles);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment