Skip to content

Instantly share code, notes, and snippets.

@damonjones
Created September 1, 2014 00:08
Show Gist options
  • Save damonjones/b1c4a3eaa1b26376f4c6 to your computer and use it in GitHub Desktop.
Save damonjones/b1c4a3eaa1b26376f4c6 to your computer and use it in GitHub Desktop.
#import "Bar.h"
@implementation Bar
@synthesize foo = _foo;
- (Foo *)foo {
if (nil == _foo) {
_foo = [[Foo alloc] init];
}
return _foo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment