if (self.addressData) {
address = [NSJSONSerialization JSONObjectWithData:self.addressData options:0 error:nil];
} else {
address = @[];
}
return address;
} NSData *data = [NSJSONSerialization dataWithJSONObject:address options:0 error:nil];
self.addressData = data;
}