I'm starting to learn Objective-C and I want to create a simple Person class with name, photo, address (house number, street name, postal code, city), phone.
I'm not sure if I have to use NSArray or NSDictionary for the address attribute. I already created a Person class and I placed my code in Person.h
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *photo;
@property (nonatomic, copy) NSString *address;
@property (nonatomic, copy) NSArray *phone;