-(void)dealloc {
// If you are using ARC remove the line below
[super dealloc]
}
And put a breakpoint and it will tell you when it is being released. The dealloc method will be called with ARC as well, just be sure that you don't call [super dealloc] in ARC.