I know this will be easy for someone. I need to combine objects to make one address. I dont know how to do it. I tried…
NSString *agcstr = [infoDictionary objectForKey:@"physstr"];
NSString *agccity = [infoDictionary objectForKey:@"physcity"];
NSString *agcstate = [infoDictionary objectForKey:@"physstate"];
NSString *agczip = [infoDictionary objectForKey:@"physzip"];
dvController.agcaddress = [agcstr stringByAppendingString:@"\n" stringByAppendingString:agccity stringByAppendingString:@", " stringByAppendingString:agczip];
which is completely wrong but I always at least attempt something 🙂
Please try the following:
Alternatively,