La mia app utilizza il geofencing e invia una notifica.Perché le mie notifiche locali non hanno audio attivo per impostazione predefinita in iOS 7?
Per impostazione predefinita, i suoni sono disattivati in Impostazioni - Notifiche per l'app.
iOS 7 per la precisione.
Qualcuno sa come risolvere questo problema?
Ecco il codice responsabile di questo:
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
localNotif.fireDate = [NSDate dateWithTimeInterval:5 sinceDate:[NSDate date]];
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.alertBody = [NSString stringWithFormat:@"You are near %@. Don't forget to check in!",place.name];
localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 0;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
ciao ho un requisito di geo scherma sono nuovo per IOS ca per favore condividi il tuo codice di esempio per aggiungere geo fencing nella nostra applicazione – sabir