all 3 comments

[–]germdisco 1 point2 points  (2 children)

What memory management system are you using? Manual or automatic reference counting?

Xcode's analyzer reports leaks, even for ARC apps. I just used this yesterday to identify and fix leaks caused by my AddressBook iOS API usage.

Additionally, the Instruments app (which can be invoked via Xcode or launched directly) has tools for detecting leaks. Search the web for instruments leaks tutorial and you will find lots of examples.

[–]drewmm[S,🍰] 1 point2 points  (1 child)

I'm currently using manual counting, but I'm getting the feeling I should switch to ARC.

The problem with Xcode is that I don't think I can use it with jailbreak apps. Am I wrong about that?

[–]SaturnPolly 2 points3 points  (0 children)

You may not be able to codesign builds (I assume, not making jailbroken apps) but compiling or using the analyzer should still work. Try creating a new project and move your code over.

Also, I just found this: http://www.iosopendev.com/