반응형
자료형.random(in: lower ... upper)
1. 자료형 설정
임의의 정수: Int.random(in: lower ... upper)
- 예: Int.random(in: 1 ... 5)
임의의 실수: Float.random(in: lower ... upper)
임의의 불리언: Bool.random()
2. 랜덤 범위 설정
Int.random(in: 1 ... 5)
→ 1,2,3,4,5 중 하나
Int.random(in: 1 ..< 5)
→ 1,2,3,4 중 하나
3. 배열에서 임의의 원소 선택하기
array[Int.random(in: 1...5)]
array.randomElement()
*배열 원소를 섞는 방법
array.shuffle()
반응형
'Mobile App' 카테고리의 다른 글
React Native Expo 안드로이드 앱에 애드몹 배너 광고 넣기 (43) | 2023.12.03 |
---|---|
[React native] 텍스트가 화면을 넘칠 때 해결 방법 (줄바꿈하기) (1) | 2023.11.25 |
React Native Expo - Network response timed out 해결 방법 (0) | 2023.06.11 |
Swift 에러: this class is not key value coding-compliant for the key (0) | 2022.07.02 |
Swift(Xcode) Image Literal 사용하는 방법 (0) | 2022.06.29 |
댓글