我的應用使用地理圍欄併發送通知。爲什麼我的本地通知在iOS 7中默認沒有聲音?
默認情況下,應用的設置 - 通知中的聲音已關閉。
iOS 7準確。
有誰知道如何解決這個問題?
這裏是負責此代碼:如果聲音被關閉的設置應用您的應用程序,那麼您的通知將不會播放任何聲音
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];
嗨,我得到了一個新的IOS的地理圍欄要求,你可以分享你的示例代碼,在我們的應用程序中添加地理圍欄 – sabir