Skip to content

Instantly share code, notes, and snippets.

@kkarayannis
Created February 27, 2014 08:30
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkarayannis/9246422 to your computer and use it in GitHub Desktop.
Save kkarayannis/9246422 to your computer and use it in GitHub Desktop.
Objective-c lazy instantiation TextExpander Snippet
-(%fill:class%*) %fill:property%{
if (!_%fill:property%){
_%fill:property% = [[%fill:class% alloc] init];
}
return _%fill:property%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment