È possibile inviare notifiche push a iPhone Simulator?

3

Sto sviluppando un'infrastruttura di notifica push e vorrei testarlo con l'iPhone Simulator su un Mac.

È possibile o devo usare un iPhone fisico?

    
posta Simon 06.03.2012 - 00:55
fonte

2 risposte

3

Le notifiche push non funzionano nel simulatore. Devi usare un iPhone fisico, iPod Touch o iPad.

Buona fortuna,

Mark

    
risposta data 08.03.2012 - 02:31
fonte
-1

Puoi testare la notifica push utilizzando qualsiasi pulsante Fai clic su evento. Prima di tutto devi creare un dizionario, come di seguito.

NSString *StrTemp = @"{'aps':{'alert':'Test alert','sound':'default'}}";
NSData *tempData = [StrTemp dataUsingEncoding:NSUTF8StringEncoding];

NSDictionary *testNotification = [NSJSONSerialization
                                  JSONObjectWithData:tempData
                                  options:0
                                  error:nil];

E puoi inviare una notifica come di seguito.

[[[UIApplication sharedApplication] delegate] application:[UIApplication sharedApplication] didReceiveRemoteNotification:testNotification];
    
risposta data 10.06.2013 - 06:57
fonte

Leggi altre domande sui tag