i just want to have an empty NSMutableDictionary.
[[NSMutableDictionary alloc] init]
or
[[NSMutableDictionary] alloc] initWithCapacity:0]
it seems that both of them work.
could some one explain which one i should use.
thank you in advanced.
[[NSMutableDictionary alloc] init]
or
[[NSMutableDictionary] alloc] initWithCapacity:0]
it seems that both of them work.
could some one explain which one i should use.
thank you in advanced.