4
我得到3個不同的功能,我想隨機調用其中之一。快速通話隨機功能
if Int(ball.position.y) > maxIndexY! {
let randomFunc = [self.firstFunction(), self.secondFunction(), self.thirdFunction()]
let randomResult = Int(arc4random_uniform(UInt32(randomFunc.count)))
return randomFunc[randomResult]
}
使用此代碼我調用所有函數,並且順序始終相同。我能做些什麼來調用其中之一?
謝謝,現在它的作品完美。 –