Я пытаюсь сделать будильник в моем приложении. Я сделал UILocalNotification, и он отлично работает. Но мне нужно установить mp3 песню как звук моего уведомления, и оно не работает
Вот код
NSString *filePath = [DOCUMENTS stringByAppendingPathComponent:@"personal.mp3"];
//NSLog(@"%@",filePath);
UILocalNotification *localNotif = [[UILocalNotification alloc]init];
localNotif.fireDate = alarmPicker.date;
localNotif.timeZone = [NSTimeZone localTimeZone];
localNotif.alertBody = @"Alarm";
localNotif.alertAction = @"View";
localNotif.soundName = filePath;
localNotif.applicationIconBadgeNumber = 1;
//localNotif.repeatInterval = NSYearCalendarUnit;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
[localNotif release];
Должен ли я добавить рамки или что мне делать? сейчас это не играет мой mp3. Спасибо