Devo inizializzare una HashMap costante e vorrei farlo in una riga. Evitando sth in questo modo:
hashMap.put("One", new Integer(1)); // adding value into HashMap
hashMap.put("Two", new Integer(2));
hashMap.put("Three", new Integer(3));
simile a questo nell'obiettivo C:
[NSDictionary dictionaryWithObjectsAndKeys:
@"w",[NSNumber numberWithInt:1],
@"K",[NSNumber numberWithInt:2],
@"e",[NSNumber numberWithInt:4],
@"z",[NSNumber numberWithInt:5],
@"l",[NSNumber numberWithInt:6],
nil]
Non ho trovato alcun esempio che mostri come farlo dopo averne visto così tanti.