Apologies about the title of this question; it is always hard to sum up these things into a few words.
I've noticed in Xcode 5 that if I create a @property
as readonly
I get compiler errors on my references to the instance variable in my code. For example :
@property (nonatomic, readonly) UIView *aView;
Then in my implementation somewhere :
self.anotherView = _aView; // blah blah
The instance variable is automatically created for me (I thought), so why do I get unknown type
errors for readonly properties? I'm sure it didn't do this before.