Nat! bio photo

Nat!

Senior Mull

Twitter Github Twitch

@property without an instance variable


@interface Foo : NSObject
{
}
@property NSString   *value;
@end

@implementation Foo
@dynamic value;
@end

Obviously missing are the accessor implementations, I would have to write myself.