[quote=krille;95037]
Your dealloc method should include a call to super dealloc. Leaving that off, and it's pretty easy to do, can cause an object to stick around though the retain count for the object is actually zero.
Example dealloc
Code:
-(void)dealloc {
[mobil release];
self.mobil = nil;
[super dealloc];
}