Well, this parameter should be set to YES, probably the code is flowing everywhere.
You can check if the project is running using the analyzer (Product β Analyze).
If ARC is disabled and releases are removed from the code, the analyzer will inform you that your code is leaking and where.
So, after turning on the ARC, the analyzer will not give you any leaks.
Another way to check if ARC is disabled or turned on is using release or autostart in your code. If ARC is enabled, you should see a warning or error.
source share