Someone in that forum proposed me a code solution that worked great, but for my understanding, I would like to know what is the difference between the 2 blocks of code:
Block 1
NSMutableDictionary* step_info = [NSMutableDictionary dictionary];
Block 2
NSMutableDictionary* step_info = nil;
step_info = [NSMutableDictionary dictionary];
It is may be also important to mention that step_info has to be filled and reuse repeatedly to load into another NSmutabledictionary.
Thank's for your help