tags:

views:

233

answers:

1
objc[1372]: FREED(id): message respondsToSelector: sent to freed object=0x43be3f0

that error when i try to click on UITableViewCell and Play some move and then press back to select another index of UITableViewCell and play some movie, i repeat this step very fast and it will get some application terminate

but i dont understand about that log which line it make crash

how could i understand about it?

+1  A: 

You are messaging deallocated objc objects. To debug more easily, enable NSZombies:

http://www.cocoadev.com/index.pl?NSZombieEnabled

Justin
thank you Justin
RAGOpoR
You're most welcome. J
Justin