Why do properties require explicit typing during compilation?
- by ctpenrose
Compilation using property syntax requires the type of the receiver to be known at compile time. I may not understand something, but this seems like a broken or incomplete compiler implementation considering that Objective-C is a dynamic language.
The property "comment" is defined with:
@property (nonatomic, retain) NSString *comment;
and…