0

I use xcode 3.4 , is there a steps to enable and use NSZombieEnabled

and will it be accepted by appstore

best regards

Ali
  • 1,975
  • 5
  • 36
  • 55

1 Answers1

1

NSZombieEnabled is considered a "debug time" tool and has nothing as such to do with the App Store. You should not leave it enabled for an app you intend to distribute as no memory is ever released and the application will just continue to use and leak memory.

Have a look at this answer for more info.

To enable in XCode 3.x have a look here

Community
  • 1
  • 1
Damien
  • 2,421
  • 22
  • 38