Skip to content

Instantly share code, notes, and snippets.

@jonathanpeppers
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save jonathanpeppers/c181191a244820c2fdd0 to your computer and use it in GitHub Desktop.

Select an option

Save jonathanpeppers/c181191a244820c2fdd0 to your computer and use it in GitHub Desktop.
NSObject Example
NSObject *object = [[NSObject alloc] init];
//Do stuff with the object
[object makeItRain: @"benjamins"];
//Cleanup your memory
[object release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment