FunkyNSDictionarySubclass

@interface FunkyNSDictionarySubclass : NSDictionary

This is a subclass of the NSDictionary 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 NSDictionary, as the implementation uses NSDictionary for the backing store.

See

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

    Declaration

    Objective-C

    - (NSDictionary *)NSDictionary;

    Swift

    func nsDictionary() -> [AnyHashable : Any]!

    Return Value

    An immutable NSDictionary copy of the current collection, keeping the same content