|
@@ -29,7 +29,8 @@
|
|
|
self.titleLB.text = @"Other Address";
|
|
|
}
|
|
|
self.nameLB.text = [NSString stringWithFormat:@"%@ %@",m.lastname,m.firstname];
|
|
|
- self.addressLB.text = [NSString stringWithFormat:@"%@,%@,%@",m.city,m.region,m.street];
|
|
|
+ NSString *street = [m.street componentsJoinedByString:@" "];
|
|
|
+ self.addressLB.text = [NSString stringWithFormat:@"%@,%@,%@",m.city,m.region.region,street];
|
|
|
self.codeLB.text = m.postcode;//[NSString stringWithFormat:@""]
|
|
|
self.countryLB.text = m.country;
|
|
|
self.phoneLB.text = [NSString stringWithFormat:@"T:%@",m.telephone];
|