I have a sub class of UIWebView and use it in a view controller.
CViewController *controller = [[CViewController alloc] init];
self.webView = controller;
[controller release];
Now in my view controller dealloc gets called and I call [_webView release]
but the dealloc in my UIWebView subclass gets never called and the memory usage raise on every time I put one view controller on the stack and never gets released after pop from the stack.
Also I can see all my windows in the Safari Development Tools, so they are never be released.
I check the retainCount (I know its not very useful) but it told me after the assignment to my property the retainCount is 3? (Property is nonatomic, retain)