iPhoneアプリでは、
ローカル通知を設定しています。
カスタムサウンドを設定しています。
通知が来ても音が聞こえませんでした。デフォルトの音すらありません。
iPodtouchにもデバイスにもありません。
どんな体でも理由を見つけるのを手伝ってくれますか?
どうもありがとう。
ここにコードがあります。
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate=[dateFormat dateFromString:alarm_date];
localNotification.alertBody = @"Alarm.";
localNotification.soundName = [filePath lastPathComponent];
//localNotification.soundName =soundname;
//UILocalNotificationDefaultSoundName;
localNotification.applicationIconBadgeNumber = 1;
localNotification.alertAction=@"Show";
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
[localNotification release];
Answer Got the Silly Point:通知音はすべて、アプリがバックグラウンドにあるか閉じているときにのみ再生されます。この質問でごめんなさい。まあありがとう。