반응형
[iOS] NSMutableArray 배열 순서 섞기 (랜덤으로 섞기)
[Objective-c] for (int i=0; i < [arrTestA count]; i++) { int random = arc4random() % [arrTestA count]; [arrTestA exchangeObjectAtIndex:random withObjectAtIndex:i]; }
만약 특정 인덱스는 섞으면 안될 경우 아래 코드를 추가해주자. if (random == 5 || i == 5) { continue; } |
[Swift] extension Array { mutating func suffle() { if count < 2 { return } for i in 0 ..< (count - 1) { let j = Int(arc4random_uniform(UInt32(count - i))) + i guard i != j else { continue } swap(&self[i], &self[j]) } } } |
반응형
'iOS > Swift + Objective-c' 카테고리의 다른 글
[iOS Objective c] 화면 흔들기 (view shake) 구현 (0) | 2017.03.31 |
---|---|
[iOS Objective c] 진동 구현 (0) | 2017.03.31 |
[Objective-c] KeyChain example (0) | 2017.03.28 |
[Objective-c] @synthesize 사용 안해도 돼요 (0) | 2017.03.20 |
[ios] cocoapod 사용하기 (0) | 2017.02.13 |