NSSortDescriptor *sorter = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sorter, nil];
getArray = [getArray sortedArrayUsingDescriptors:sortDescriptors];
NSSortDescriptor *sorter = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sorter, nil];
getArray = [getArray sortedArrayUsingDescriptors:sortDescriptors];