func willRunOnceCoach() -> () {
// struct TokenContainer {
// static var token : dispatch_once_t = 0
// }
//
// dispatch_once(&TokenContainer.token) {
// print("This is printed only on the first call")
// self.createCochMark()
// }
// }
上面是dispatch_once代码块,我想将其转换为swift 3.我怎么能这样做? 截至目前,我收到以下错误: “dispatch_once在swift中不可用” 任何帮助将不胜感激