Just confused here is there any reason why
_properties = [NSMutableDictionary dictionaryWithObjects:values forKeys:keys];
Causes a crash, where
_properties = [[NSMutableDictionary alloc] initWithObjects:values forKeys:keys];
works fine in an application with bindings?
Thanks, I'm sure this is a very simple thing i'm missing!
_properties = [NSMutableDictionary dictionaryWithObjects:values forKeys:keys];
Causes a crash, where
_properties = [[NSMutableDictionary alloc] initWithObjects:values forKeys:keys];
works fine in an application with bindings?
Thanks, I'm sure this is a very simple thing i'm missing!