Function in Swift
1) Print
print(anything)
Swift
복사
만약 중간에 코드를 넣고 싶다면 \([ code ]) 사용
print("the result of 5 + 3 = \(5 + 3)")
Swift
복사
2) random
// 1 ~ 3
let randomNumber = Int.random(in: 1 ... 3)
// 1 ~ 2
let randomNumber = Int.random(in: 1 ..< 3)
// 1 ~ 2.9999999...
let ramdomNumber = Float.ramdom(in: 1..< 3)
Swift
복사
3) Sleep
•
초 단위만 가능
import UIKit
sleep(UInt32) // unsigned int
Swift
복사
•
ms 단위도 가능
usleep(1000000) //will sleep for 1 second
usleep(2000) //will sleep for .002 seconds
Swift
복사
4) Timer() ← 써야함
Swift에서 편하게