Hi imagine I have properties in the .h file:
@property (nonatomic) NSString * myText;
@property (nonatomic) SomeClass * someObj;
Now, in the class implementation.
Say, I didn't forget to use synthesize, and I called:
@synthesize myText, someObj;
Now say in code I forget to put self
before the property name (and directly refer to the ivar):
myText = @"Hello";
someObj = [[SomeClass alloc] init];
My question is: is this a problem? What problems can it result in? Or it is no big deal?
ps. Say I am using ARC.