Eu preciso inicializar um HashMap constante e gostaria de fazê-lo em uma instrução de linha. Evitando sth assim:
hashMap.put("One", new Integer(1)); // adding value into HashMap
hashMap.put("Two", new Integer(2));
hashMap.put("Three", new Integer(3));
semelhante a isso no objetivo C:
[NSDictionary dictionaryWithObjectsAndKeys:
@"w",[NSNumber numberWithInt:1],
@"K",[NSNumber numberWithInt:2],
@"e",[NSNumber numberWithInt:4],
@"z",[NSNumber numberWithInt:5],
@"l",[NSNumber numberWithInt:6],
nil]
Não encontrei nenhum exemplo que mostre como fazer isso, tendo analisado tantos.