FBRetainCycleDetector icon indicating copy to clipboard operation
FBRetainCycleDetector copied to clipboard

Cannot find any useful information

Open magic3584 opened this issue 5 years ago • 0 comments

I have a complicated viewController, and I use this in function like this:


    FBRetainCycleDetector *detector = [FBRetainCycleDetector new];
    [detector addCandidate:self];
    NSSet *retainCycles = [detector findRetainCycles];
    NSLog(@"%@", retainCycles);
    [self dismissViewControllerAnimated:YES completion:nil];

But the controller's dealloc function not called and I cannot find any useful information

{(
)}

magic3584 avatar Dec 30 '20 07:12 magic3584