Skip to content

Instantly share code, notes, and snippets.

View HeidiHansen's full-sized avatar
🚲

JungleDev HeidiHansen

🚲
View GitHub Profile
@HeidiHansen
HeidiHansen / ArrayMethods
Created October 5, 2014 00:41
Playing With Array methods.
#import "Collections.h"
@implementation Collections
//sorts the array in ascending order
-(NSArray *)sortArrayAsc:(NSArray *)array
{
return [array sortedArrayUsingSelector:@selector(compare:)];
}