I'm reading an Objective-C Fundamentals book that's taking me through the construction of a basic app. However, it doesn't always show us what to do. At one point, it says
open RootViewController.h and remove the existing definitions for the PropertyType enumeration and RentalProperty structure. Replace them with the CTRentalProperty class.
Ok, it's easy to find the enumeration and structure it referred to...
typedef enum PropertyType {
Unit,
TownHouse,
Mansion
} PropertyType;
typedef struct {
NSString *address;
PropertyType type;
double weeklyRentalPrice;
} RentalProperty;
but what exactly does it mean (what is the actual code) when it says
Replace them with the CTRentalProperty class
Do I just write
CTRentalProperty;
Probably not. Can you help me understand what the author's talking about. We've made CTRentalProperty.h and CTRentalProperty.m classes/files, but I'm not sure if I'm supposed to copy code from them into the controller.
