views:

69

answers:

1

Hello, I am trying to develop an application which uses storekit api. The document (Store Kit guide) suggests that the api will not work on a simulator. I found out that memory leaks will not be able to work on a device. I was wondering if any one can tell me how to check for memory leaks while using a store kit api on a project? How is it possible?

+1  A: 

You can use instruments with the device to find memory leaks. See http://stackoverflow.com/questions/379983/does-instruments-objectalloc-leaks-require-the-simulator

MikeJ