Ok, I have been doing a few views like this where in one class i will:
then within myView I get done doing what ever i'm doing and then i do [self release]. Will this properly deallocate the memory?
It doesn't seem that dealloc gets called in said class :/
Code:
myView *view = [[myView alloc] initwithFrame: blah];
then within myView I get done doing what ever i'm doing and then i do [self release]. Will this properly deallocate the memory?
It doesn't seem that dealloc gets called in said class :/