La notificación automática de mensajes instantáneos con Sinch no viene en iOS

[! [ingrese la descripción de la imagen aquí] [1]] [1] He mencionado todos los campos pero aún no recibo la notificación push. Este es mi código:

En primer lugar, en didFinishLaunchingWithOptions llamo a esto:

        self.push = Sinch.managedPushWithAPSEnvironment(.Production)
        self.push?.delegate = self
        self.push?.setDesiredPushTypeAutomatically()

        client = Sinch.clientWithApplicationKey("xxxxxx", applicationSecret: "xxxxxxx", environmentHost: "sandbox.sinch.com", userId: userID)
        client?.delegate = self
        client?.setSupportMessaging(true)
        client?.setSupportPushNotifications(true)
        client?.enableManagedPushNotifications()
        client?.start()
        client?.startListeningOnActiveConnection()

        self.push?.registerUserNotificationSettings()

func managedPush(managedPush: SINManagedPush!, didReceiveIncomingPushWithPayload payload: [NSObject : AnyObject]!, forType pushType: String!) {

        self.client?.relayRemotePushNotification(payload)
    }


func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {

        let tokenChars = UnsafePointer<CChar>(deviceToken.bytes)
        var tokenString = ""

        for i in 0..<deviceToken.length {
            tokenString += String(format: "%02.2hhx", arguments: [tokenChars[i]])
        }

        self.push?.application(application, didRegisterForRemoteNotificationsWithDeviceToken: deviceToken)
    }


func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {
        self.push?.application(application, didReceiveRemoteNotification: userInfo)
    }

También he subido el certificado push en mi panel de control de sinch.

¿Puedo saber qué me estoy perdiendo en este código? Esa podría ser la razón por la que no me presionan.

EDITADO:

Aquí está la imagen del certificado de distribución push cargado en Sinch Dashboard.

http://i.stack.imgur.com/d6PVb.png

Respuestas a la pregunta(1)

Su respuesta a la pregunta