Quote:
Originally Posted by smasher
Did you use the Object Allocations instrument to find out what kinds of objects are increasing over time?
It's possible that you're not releasing self.listdata in the dealloc, which means the images inside would never be released. Also, they way you're adding and removing movingObject is unusual. That's typically done by init-ing the view, adding it as a subview, and then immediately releasing it. If you do that then you don't have to do the release when you remove movingObject later, and you don't have to release movingObject in the dealloc either.
|
Smasher, I thinks movingObject is deallocating fine, would you like If I send you complete project code??? Also could you please give me some sample code or hint how do I use movingObject by int-inting the view.