Я пытаюсь настроить пользовательский звук локального уведомления следующим образом:
UILocalNotification *notification = [UILocalNotification new];
notification.timeZone = [NSTimeZone systemTimeZone];
notification.fireDate = date;
notification.alertAction = @"123";
notification.alertBody = @"123";
//!!!
notification.soundName = @"Glass.aiff";
alarmID=[NSString stringWithFormat:@"%i", arrayAlarms.count];
NSDictionary *infoDict = [NSDictionary dictionaryWithObject:alarmID forKey:@"id"];
notification.userInfo = infoDict;
notification.repeatInterval=NSWeekCalendarUnit;
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
Но я слышу только звук по умолчанию.Я тестирую приложение на ios5.Большое спасибо за помощь заранее и извините за мой английский.