I am creating a class Ticket. In that ticket I want a mutable array of NSStrings i.e. in ticket.h
@interface Ticket : NSObject
@property NSString *ticketName;
@property NSMutableArray *games;
However Objective C doesn't allow me to do this. What am I supposed to do to have an array inside an object?
I then want to store that array using encodeWithCoder in the implementation of the object