Question regrarding declaring a property
- by Simon
Hi. We declare properties using the @property keyword and synthesize it in the implementation file. My question is,
What if I declare a property using the @property keyword and also declare a variable in the interface block with the same name? For example, consider the following code,
Interface:
@interface myClass : NSObject {
NSString…