Descripción general
Es una categoría que agrega algunos métodos prácticos a NSDictionary para establecer valores de varios tipos.
Estos métodos son particularmente útiles para obtener y configurar campos de objetos de datos JSON.
Resumen del método de instancia | |
(void) | - gck_setStringValue:forKey: |
Establece un valor NSString para una clave. Más... | |
(void) | - gck_setIntegerValue:forKey: |
Establece un valor NSInteger para una clave. Más... | |
(void) | - gck_setUIntegerValue:forKey: |
Configura un valor NSUInteger para una clave. Más... | |
(void) | - gck_setDoubleValue:forKey: |
Fija un valor doble para una clave. Más... | |
(void) | - gck_setBoolValue:forKey: |
Establece un valor BOOL para una clave. Más... | |
Detalle del método
- (void) gck_setStringValue: | (NSString *) | value | |
forKey: | (NSString *) | key | |
Establece un valor NSString para una clave.
- Parameters
-
value The value. key The key.
- (void) gck_setIntegerValue: | (NSInteger) | value | |
forKey: | (NSString *) | key | |
Establece un valor NSInteger para una clave.
- Parameters
-
value The value. key The key.
- (void) gck_setUIntegerValue: | (NSUInteger) | value | |
forKey: | (NSString *) | key | |
Configura un valor NSUInteger para una clave.
- Parameters
-
value The value. key The key.
- (void) gck_setDoubleValue: | (double) | value | |
forKey: | (NSString *) | key | |
Fija un valor doble para una clave.
- Parameters
-
value The value. key The key.
- (void) gck_setBoolValue: | (BOOL) | value | |
forKey: | (NSString *) | key | |
Establece un valor BOOL para una clave.
- Parameters
-
value The value. key The key.