Objective-C @property attribute suggestion
I would love to have the following feature in Objective-C:
@property(retain, auto) id something;
Where “auto” attribute would mean:
1) automatic @synthesize (already present in modern Clang compiler)
2) “nonatomic” if not stated otherwise
3) automatic release (if “retain” or “copy” is used) and nullifying of instance variable on dealloc
