Categoria NSMutableDictionary(GCKAdditions)

Riferimento per le categorie NSMutableDictionary(GCKAdditions)

Panoramica

Una categoria che aggiunge alcuni metodi di convenienza a NSDictionary per l'impostazione di valori di vari tipi.

Questi metodi sono particolarmente utili per recuperare e impostare i campi degli oggetti di dati JSON.

Riepilogo del metodo di istanza

(void) - gck_setStringValue:forKey:
 Imposta un valore NSString per una chiave. Altro...
 
(void) - gck_setIntegerValue:forKey:
 Imposta un valore NSInteger per una chiave. Altro...
 
(void) - gck_setUIntegerValue:forKey:
 Imposta un valore NSUInteger per una chiave. Altro...
 
(void) - gck_setDoubleValue:forKey:
 Imposta un valore Double per una chiave. Altro...
 
(void) - gck_setBoolValue:forKey:
 Imposta un valore BOOL per una chiave. Altro...
 

Dettaglio metodo

- (void) gck_setStringValue: (NSString *)  value
forKey: (NSString *)  key 

Imposta un valore NSString per una chiave.

Parameters
valueThe value.
keyThe key.
- (void) gck_setIntegerValue: (NSInteger)  value
forKey: (NSString *)  key 

Imposta un valore NSInteger per una chiave.

Parameters
valueThe value.
keyThe key.
- (void) gck_setUIntegerValue: (NSUInteger)  value
forKey: (NSString *)  key 

Imposta un valore NSUInteger per una chiave.

Parameters
valueThe value.
keyThe key.
- (void) gck_setDoubleValue: (double)  value
forKey: (NSString *)  key 

Imposta un valore Double per una chiave.

Parameters
valueThe value.
keyThe key.
- (void) gck_setBoolValue: (BOOL)  value
forKey: (NSString *)  key 

Imposta un valore BOOL per una chiave.

Parameters
valueThe value.
keyThe key.