FunkyNSMutableDictionarySubclass

@interface FunkyNSMutableDictionarySubclass : NSMutableDictionary

This is a subclass of the NSMutableDictionary class-cluster, overriding the minimum set of getters and setters in order to further subclassing it, customizing the behaviour. This particular class is equivalent of an NSMutableDictionary, as the implementation uses NSMutableDictionary for the backing store.

See

Mutable counterpart FunkyNSMutableDictionarySubclass
  • Converts the current subclass into a basic NSMutableDictionary

    Declaration

    Objective-C

    - (NSMutableDictionary *)NSMutableDictionary;

    Swift

    func nsMutableDictionary() -> NSMutableDictionary!

    Return Value

    An NSMutableDictionary copy of the current collection, keeping the same content