我在操场上。我试图使用arc4random_uniform
func但我收到此错误:使用未解析的标识符' arc4random_uniform'
我可以使用另一个func吗?
答案 0 :(得分:8)
确保您至少已导入import Foundation
。或针对iOS的平台特定import UIKit
或OSX的import Cocoa
。
答案 1 :(得分:1)
arc4random_uniform
仅是Apple平台(来自UIKit)。
如果您的游乐场托管在Linux上,则它将无法正常工作。
使用rand()
或Int/Double/Bool.Int.random()