I have an iphone app. It seems to run fine. When I connect to a provisioned iphone to Xcode and run the App, the console log in the Organizer window, always complains abou
Try running your application with NSZombieEnabled. This will tell you if you're over releasing any object. To enable zombies do the following:
- Choose Project > Edit Active Executable to open the executable Info window.
- Click Arguments.
- Click the add (+) button in the “Variables to be set in the environment” section.
- Enter NSZombieEnabled in the Name column and YES in the Value column.
- Make sure that the checkmark forthe NSZombieEnabled entry is selected.