I am looking for a way to evaluate a Swift Bool concisely in a single if statement, when the Bool is the property of an optional objec
Bool
if
You could also do :
if let obj = objectWithBool where obj { // objectWithBool != nil && obj == true } else { // objectWithBool == nil || obj == false }