我在iPad應用程序與我UINotification
完成。我正在嘗試向我的通知消息添加聲音。我嘗試了默認和自定義之一,我已經添加到我的包中,但都不起作用。聲音不工作UINotification
[[UIApplication sharedApplication] cancelAllLocalNotifications];
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = nil;
localNotification.alertBody = @"Message";
localNotification.soundName = @"ALERT.mp3"; // UILocalNotificationDefaultSoundName
[[UIApplication sharedApplication] presentLocalNotificationNow:localNotification];
兩者都不工作,我聽不到任何東西。
您能告訴我您的方法嗎? – moosa0709
哎嘗試修復消防日期和關閉應用程序,然後你檢查你notificatication和聲音或者正在添加不 –