Skip to content

Instantly share code, notes, and snippets.

@jwhitehorn
Last active December 20, 2015 12:38
Show Gist options
  • Select an option

  • Save jwhitehorn/6132062 to your computer and use it in GitHub Desktop.

Select an option

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