随机功能操场迅捷

时间:2015-01-26 15:57:26

标签: swift xcode6 swift-playground

我在操场上。我试图使用arc4random_uniform func但我收到此错误:使用未解析的标识符' arc4random_uniform'

我可以使用另一个func吗?

2 个答案:

答案 0 :(得分:8)

确保您至少已导入import Foundation。或针对iOS的平台特定import UIKit或OSX的import Cocoa

答案 1 :(得分:1)

arc4random_uniform仅是Apple平台(来自UIKit)。 如果您的游乐场托管在Linux上,则它将无法正常工作。

使用rand()Int/Double/Bool.Int.random()

https://stackoverflow.com/a/24007169/5717295