Skip to content

Instantly share code, notes, and snippets.

@jonsterling
Created March 19, 2011 01:22
Show Gist options
  • Select an option

  • Save jonsterling/877122 to your computer and use it in GitHub Desktop.

Select an option

Save jonsterling/877122 to your computer and use it in GitHub Desktop.
Whoah! WUT
template <typename T>
T *autoreleasedInstance() {
return [[[[T class] alloc] init] autorelease];
}
int main (int argc, const char * argv[]) {
NSString *obj = autoreleasedInstance<NSString>();
NSLog(@"obj: %@", [obj class]);
// => obj: __NSCFConstantString
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment