I am just curious if reusing a variable assigned to a convenience method is ok.
NSDictionary *address = [NSDictionary dictionaryWithObjectsAndKeys:@"Italy", @"Country",
address = [NSDictionary dictionaryWithObjectsAndKeys:@"England", @"Country", nil];
or should I just assign a 2nd new variable?
NSDictionary *address = [NSDictionary dictionaryWithObjectsAndKeys:@"Italy", @"Country",
NSDictionary *address2 = [NSDictionary dictionaryWithObjectsAndKeys:@"England", @"Country", nil];
cheers gary