Question: how would one go about initializing objects using default property values? Can one override an init within a class to create the objects?
I want to avoid using the view controller to input the object's property data. I am not pulling in data from an external source. Just want to keep the data in a separate file, like a class file, because the application involves a ton of text.
The objects I have in mind would be something that looks like a typical class object with a number of properties: object1(prop1:"string", prop2: [string], prop3: [string] and so on ...) but created in the same class to be inserted into an array of objects.