Nimbus
0.9.3 - Nimbus is proudly hosted on Github
An iOS framework whose growth is bounded by O(documentation).
|
For collections that don't retain their objects.
Non-retaining collections have historically been used when we needed more than one delegate in an object. However, NSNotificationCenter is a much better solution for n > 1 delegates. Using a non-retaining collection is dangerous, so if you must use one, use it with extreme care. The danger primarily lies in the fact that by all appearances the collection should still operate like a regular collection, so this might lead to a lot of developer error if the developer assumes that the collection does, in fact, retain the object.
Functions | |
NSMutableArray * | NICreateNonRetainingMutableArray (void) |
NSMutableDictionary * | NICreateNonRetainingMutableDictionary (void) |
NSMutableSet * | NICreateNonRetainingMutableSet (void) |
NICreateNonRetainingMutableArray | ( | void | ) |
Creates a mutable array which does not retain references to the objects it contains.
Typically used with arrays of delegates.
Definition at line 23 of file NINonRetainingCollections.m.
NICreateNonRetainingMutableDictionary | ( | void | ) |
Creates a mutable dictionary which does not retain references to the values it contains.
Typically used with dictionaries of delegates.
Definition at line 29 of file NINonRetainingCollections.m.
NICreateNonRetainingMutableSet | ( | void | ) |
Creates a mutable set which does not retain references to the values it contains.
Typically used with sets of delegates.
Definition at line 35 of file NINonRetainingCollections.m.