Categories

The following categories are available globally.

  • Undocumented

    See more

    Declaration

    Objective-C

    @interface NSObject (Mapping)
    
    - (void)mapFromResponse:(nonnull NSDictionary *)response;
    - (nullable NSString *)indexKeyCondition;
    - (nullable NSDictionary *)mapObject;
    
    @end
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface NSString (Escaping)
    
    /**
     The method creates a legal SQL string for use in an SQL statement.
    
     @note https://dev.mysql.com/doc/refman/5.7/en/string-literals.html#character-escape-sequences
     @param encoding Character encoding type.
     @return Escaped string.
     */
    - (nonnull NSString *)escapedUsingEncoding:(CharsetEncoding)encoding;
    
    @end