Skip to content

Instantly share code, notes, and snippets.

@rajohns08
Created November 22, 2014 06:47
Show Gist options
  • Save rajohns08/6d73c5622edbb022cdd3 to your computer and use it in GitHub Desktop.
Save rajohns08/6d73c5622edbb022cdd3 to your computer and use it in GitHub Desktop.
@implementation Animal
+ (id)giveMeAnimalA {
return [[[self class] alloc] init];
}
+ (instancetype)giveMeAnimalB {
return [[[self class] alloc] init];
}
+ (Animal *)giveMeAnimalC {
return [[[self class] alloc] init];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment