I am getting too many Object sent - autorelease too many times, this memory leak for my iPhone app and dont know how to resolve it http://screencast.com/t/fPzMNewvq Above is screen shot for the same.
SAAdvertiseCell has lot of objects which are releasing, so how is it possible to find where the exact problem is? Thanks
For creation of Custom UITableViewCell, write your code in this manner:
Hope this will help you to solve your problem
At first why don't you reuse cells?
And for your problem: seems that
initWithData:
already returns an autoreleased object, then you send another autorelease. So check that method to find the problem.