I know that this is rarely required to override the alloc or dealloc methods,but if required is it possible in iPhone programming?
|
|
|||
|
|
|
You can and indeed, you should (if using manual memory management) override |
|||||||||||||
|
|
In general, overriding I've never attempted any of this, and I suspect that its a bit of a minefield -- you need to study up on the structures and be pretty careful. As Adam said, you should ALWAYS (in a reference counted environment) override Update: An interesting thing you can do ... in RedClass or a superclass of it code something like:
The net result is that whenever you execute Not saying that it's a good idea to do this, but it's possible (and I don't offhand know of any cases where it wouldn't work reliably for vanilla user-defined classes). And it does have a few possible uses. Additional note: In some cases one might want to use |
|||||||||||||
|