Edit me

The following pages and posts are tagged with

TitleTypeExcerpt
-finalize Page -finalize runs automatically before -dealloc When the -retainCount is decremented to zero via -release, an object gets the -finalize message. If the retainCount remains unchanged throughout -finalize, then -dealloc is called...
New Property attributes Page dynamic Indicate that a property is not backed by an ivar. This is useful for forwarding properties. @property( copy, dynamic) NSString *bar; E.g. - (void) setBar:(NSString *) s { [_other setBar:s]; } serializable Indicate that a property should...
Tagged Pointer Classes Page Note: If you are using the MulleFoundation, then tagged pointers will be used for NSNumber and NSString leaving little (64 bit) or no (32 bit) room for own tagged pointer classes. Create a tagged pointer (TPS) class A tagged pointer class is great,...
universe Page