Создайте NSMutableArray с вашим исходным массивом, затем перемешайте его.
Для перемешивания вы можете использовать этот код:
// NSMutableArray_Shuffling.h
#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
#else
#include <Cocoa/Cocoa.h>
#endif
// This category enhances NSMutableArray by providing
// methods to randomly shuffle the elements.
@interface NSMutableArray (Shuffling)
- (void)shuffle;
@end
// NSMutableArray_Shuffling.m
#import "NSMutableArray_Shuffling.h"
@implementation NSMutableArray (Shuffling)
- (void)shuffle
{
static BOOL seeded = NO;
if(!seeded)
{
seeded = YES;
srandom(time(NULL));
}
NSUInteger count = [self count];
for (NSUInteger i = 0; i < count; ++i) {
// Select a random element between i and end of array to swap with.
int nElements = count - i;
int n = (random() % nElements) + i;
[self exchangeObjectAtIndex:i withObjectAtIndex:n];
}
}
@end
Вы можете использовать тасование так:
NSMutableArray* array = [NSMutableArray arrayWithArray:imageArray];
[array shuffle];
[array objectAtIndex:0];
[array objectAtIndex:1];
[array objectAtIndex:2];
[array objectAtIndex:3];
[array objectAtIndex:4];
...
Код перестановки, полученный из этого вопроса