0

最新のベータ版にアップグレードしたところ、次のエラーが発生しました。 ここに画像の説明を入力

何か案は?

コードは次のとおりです。

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)
    }

ハンドラーのタイプが変更されたに違いないようです。

typealias XCNotificationExpectationHandler = (NSNotification) -> ObjCBool

今のタイプなのでObjCBool

4

1 に答える 1

0
func testFileStatusNotifications() {

    let x : XCNotificationExpectationHandler = { (n : NSNotification!) -> ObjCBool in

        // Extract userInfo
        let u = n.userInfo!
        let dict = u.values.first as! [String : Double]
        let percent = dict["percent"]!

        let ret =  (percent > 10)
        return ObjCBool(ret)
    }

それは物事を修正したようです。

于 2015-08-10T14:28:21.410 に答える