Skip to content

Instantly share code, notes, and snippets.

@jwhitehorn
Last active December 20, 2015 12:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwhitehorn/6132062 to your computer and use it in GitHub Desktop.
Save jwhitehorn/6132062 to your computer and use it in GitHub Desktop.
@implementation NSArray (Access)
- (id) firstObject{
if([self count] > 0){
return [self objectAtIndex:0];
}
return nil;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment