-1

Possible Duplicate:
iPhone OS Memory Warnings. What Do The Different Levels Mean?

I received in my app a lot of Received memory warning. Level=2 , there is a way to know which object make the memory warning?

Community
  • 1
  • 1
YosiFZ
  • 7,792
  • 21
  • 114
  • 221

2 Answers2

0

You should inspect your code using Instruments, which is a tool that comes with the SDK. I'd recommend using Allocations and Leaks to see which objects are kept alive for how long and if you have any leaks that cause the warnings.

aslı
  • 8,740
  • 10
  • 59
  • 80
0

Please Clean All Targets and delete build folder then go to Run -> Run With Performance Tool -> Leaks.. Using this, Your app will run with instruments.. this will show you where memory leak occurs..

Mehul Mistri
  • 15,037
  • 14
  • 70
  • 94