Sha256: 2603e5dfb1fb3e4883801ccca59b30649868e91974ea46f67d47c8ec293d02ca
Contents?: true
Size: 497 Bytes
Versions: 37
Compression:
Stored size: 497 Bytes
Contents
// MyClass.h @interface MyClass : NSObject { NSString *value; NSTextField *textField; @private NSDate *lastModifiedDate; } @property(copy, readwrite) NSString *value; @property(retain) IBOutlet NSTextField *textField; @end // MyClass.m // Class extension to declare private property @interface MyClass () @property(retain) NSDate *lastModifiedDate; @end @implementation MyClass @synthesize value; @synthesize textField; @synthesize lastModifiedDate; // implementation continues @end
Version data entries
37 entries across 37 versions & 4 rubygems