Anil.khanna89
Anil.khanna89

Reputation: 21

Xcode Instruments : Unable to identify the memory leak issue

I'm facing some serious memory-related problems in maintenance project and unable to identify the cause for the issue I'm facing. Please find the attached below image for reference.

Help would be much appreciated.

Error Screenshot

Upvotes: 0

Views: 382

Answers (1)

Swift Dev Journal
Swift Dev Journal

Reputation: 20088

The Cycles and Roots screenshot you showed doesn't provide any information on what's causing the leak. If you want to find the leaks in your code, switch to the call tree view using the jump bar. Click the Call Tree button at the bottom of the window and select Invert Call Tree and Hide System Libraries checkboxes to make it easier to find your code in the call tree view.

enter image description here

Upvotes: 1

Related Questions