我在调试和发布中的完成块有一个奇怪的行为。例如:
sourceViewController.presentViewController(ccVC, animated: true, completion: { () -> Void in
NSUserDefaults.standardUserDefaults().setBool(true, forKey: kChromeCastInstructionsShown)
NSUserDefaults.standardUserDefaults().synchronize()
println("save bolean")
})
在调试中: println("save bolean") 打印字符串 在 relase 中: println("save bolean") 不打印
关于这种行为的任何想法?有人尝试一个明确的解决方案?
善良的安德里亚