Deprecated NSMapTable Methods
A method identified as deprecated has been superseded and may become unsupported in the future.
Deprecated in OS X v10.8
mapTableWithStrongToStrongObjects
Returns a new map table object which has strong references to the keys and values. (Deprecated in OS X v10.8. Use strongToStrongObjectsMapTable instead.)
Return Value
A new map table object which has strong references to the keys and values.
Availability
- Available in OS X v10.5 and later.
- Deprecated in OS X v10.8.
Declared In
NSMapTable.hmapTableWithStrongToWeakObjects
Returns a new map table object which has strong references to the keys and weak references to the values. (Deprecated in OS X v10.8. Use strongToWeakObjectsMapTable instead.)
Return Value
A new map table object which has strong references to the keys and weak references to the values.
Special Considerations
NSMapTable objects created using this method do not support weak references under Automatic Reference Counting (ARC).
Availability
- Available in OS X v10.5 and later.
- Deprecated in OS X v10.8.
Declared In
NSMapTable.hmapTableWithWeakToStrongObjects
Returns a new map table object which has weak references to the keys and strong references to the values. (Deprecated in OS X v10.8. Use weakToStrongObjectsMapTable instead.)
Return Value
A new map table object which has weak references to the keys and strong references to the values.
Special Considerations
NSMapTable objects created using this method do not support weak references under Automatic Reference Counting (ARC).
Availability
- Available in OS X v10.5 and later.
- Deprecated in OS X v10.8.
Declared In
NSMapTable.hmapTableWithWeakToWeakObjects
Returns a new map table object which has weak references to the keys and values. (Deprecated in OS X v10.8. Use weakToWeakObjectsMapTable instead.)
Return Value
A new map table object which has weak references to the keys and values.
Special Considerations
NSMapTable objects created using this method do not support weak references under Automatic Reference Counting (ARC).
Availability
- Available in OS X v10.5 and later.
- Deprecated in OS X v10.8.
Declared In
NSMapTable.h© 2012 Apple Inc. All Rights Reserved. (Last updated: 2012-09-19)