Is there a way to print value of Boolean flag in NSLog?
Note that in Swift, you can just do
let testBool: Bool = true NSLog("testBool = %@", testBool.description)
This will log testBool = true
testBool = true