Totally confused here. Studying the Objective-C.pdf from Apple, and I read: "Class objects ... inherit from the classes above them in the hierarchy. But because they dont have instance variables (only instances do), they inherit only methods."
How can the "Class Object" or ("Factory Object")--which, as I understand it, is the "Master" object of a class used to create all its objects (i.e., is a "template")--be "cloned" to create Objects (or "Instances") with Instance Variables if the Class Object itself has no Instance Variables?
How can the "Class Object" or ("Factory Object")--which, as I understand it, is the "Master" object of a class used to create all its objects (i.e., is a "template")--be "cloned" to create Objects (or "Instances") with Instance Variables if the Class Object itself has no Instance Variables?