私は何時間も解決策を探していました..絶対に運がありません。
ローカル通知を設定しました。
UILocalNotification *notif = [[cls alloc] init];
[dateComp setDay:j+1];
[dateComp setHour:[[time objectAtIndex:0] integerValue]+offset];
[dateComp setMinute:[[time objectAtIndex:1] integerValue]];
NSLog(@"Year: %i, Month: %i, Day: %i, Time:%i:%i\n",[dateComp year], [dateComp month],
[dateComp day], [dateComp hour], [dateComp minute]);
notif.fireDate = [gregorian dateFromComponents:dateComp];
notif.timeZone = [NSTimeZone defaultTimeZone];
notif.alertBody = [names objectAtIndex: k];
notif.soundName = @"fireburn.caf";
音の名前に注意してください...
10個のサウンド(aiff、wav、caf ...など)を入れようとしましたが、通知はデフォルトのサウンドでポップアップします:/
Resourcesフォルダに「fireburn.caf」ファイルがあります。
なぜ私の音が鳴らないのですか?????
ありがとう。