NSObject(Mapping)

@interface NSObject (Mapping)

- (void)mapFromResponse:(nonnull NSDictionary *)response;
- (nullable NSString *)indexKeyCondition;
- (nullable NSDictionary *)mapObject;

@end

Undocumented

  • Undocumented

    Declaration

    Objective-C

    - (void)mapFromResponse:(nonnull NSDictionary *)response;

    Swift

    func map(fromResponse response: [AnyHashable : Any])
  • Undocumented

    Declaration

    Objective-C

    - (nullable NSString *)indexKeyCondition;

    Swift

    func indexKeyCondition() -> String?
  • Undocumented

    Declaration

    Objective-C

    - (nullable NSDictionary *)mapObject;

    Swift

    func mapObject() -> [AnyHashable : Any]?