Swift错误:'DYLD_BOOL'无法转换为'bool'

Dha*_*esh 2 boolean swift

我正在开发一个简单的基于tableview的应用程序,如果用户触摸任何单元格,那么他将导航到DetailViewController,当用户点击DetailViewController时,他会回到tableView,我使用:

override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
    self.dismissViewControllerAnimated(TRUE, completion: nil)
}
Run Code Online (Sandbox Code Playgroud)

但是我不能在以后的小版本中使用true,并且该行给出了如下错误:

'DYLD_BOOL' is not convertible to 'bool'
Run Code Online (Sandbox Code Playgroud)

这是什么解决方案?

rin*_*aro 6

只是使用true,而不是TRUE.