Just upgraded to the latest beta and i'm getting this error:
Any ideas?
Code is:
func testFileStatusNotifications() {
let x : XCNotificationExpectationHandler = { (n : NSNotification!) -> Bool in
// Extract userInfo
let u = n.userInfo!
let dict = u.values.first as! [String : Double]
let percent = dict["percent"]!
return (percent > 10)
}
It appears that the handler type must have changed:
typealias XCNotificationExpectationHandler = (NSNotification) -> ObjCBool
as it now is of type ObjCBool
That seems to have fixed things.