views:

49

answers:

2

What are the memory management checks that XCode does ?

A: 

xcode specifically doesn't do any, it just compiles your code as far as i'm aware.

You can use a performance tool called 'Leaks' to check for memory leaks, this is a program that is kind of part of xcode.

Bongeh
just as i thought...was just curious ...as one of my friends was asked such a question...
Arun Abraham
A: 

The question is referring to the static analyzer, that you can run using the 'Build and Analyze' (Xcode 3) or 'Analyze' (Xcode 4) menus.

Dimi3