texto puedo porque por mensajes mensaje los fotos enviar entregado desde como apple activar iphone ios xcode cocos2d-iphone parse.com

puedo - Notificación de envío de Parse en iphone



no puedo enviar mensajes de texto iphone 6 (2)

Notificación integrada de parse push en el proyecto iOS. No funciona.

Aquí está mi código:

#ifdef ENABLE_PARSE_PUSH #import "Parse/Parse.h" #endif //in appDelegate didFinishLaunchingWithOptions #ifdef ENABLE_PARSE_PUSH // Obtain the installation object for the current device [Parse setApplicationId:PARSE_APP_ID clientKey:PARSE_APP_SIGNATURE]; PFInstallation *myInstallation = [PFInstallation currentInstallation]; // Save some data [myInstallation setObject:@"YES" forKey:@"scoreUpdates"]; // Save or Create installation object [myInstallation saveInBackground]; [application registerForRemoteNotificationTypes: UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound]; #endif #ifdef ENABLE_PARSE_PUSH - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)newDeviceToken { [PFPush storeDeviceToken:newDeviceToken]; // Send parse the device token // Subscribe this user to the broadcast channel, "" [PFPush subscribeToChannelInBackground:@"" block:^(BOOL succeeded, NSError *error) { if (succeeded) { //#ifdef DEBUG //NSLog(@"Successfully subscribed to the broadcast channel."); //#endif } else { //#ifdef DEBUG //NSLog(@"Failed to subscribe to the broadcast channel."); //#endif } }]; } - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo { [PFPush handlePush:userInfo]; } #endif

aquí hay una publicación similar que no me ayudó ... intenté todas las soluciones sugeridas. Lo que está mal. Ya ha cargado SSL de desarrollo push en parse.com. ayúdame a obtener una solución.

Ahora el mensaje de prueba de parse.com no se entrega en el dispositivo.



Ok, finalmente resolvió este problema.

• Necesitamos crear un nuevo perfil de aprovisionamiento después de configurar push SLL en la sección de identificación de la aplicación. Entonces necesitamos usar un nuevo perfil de aprovisionamiento.

Esto resolvió mi problema y ahora recibe un mensaje de prueba de Parse.