Dear developers,Since several days, I'm trying to work with a UILocalNotifications in order to perform tests of a my app. When I created the XCode project, in it i included several sounds file *.mp4a and the app worked perfectly. Succcesively I try to include some audio files, with same extension, in the Documents directory of the app. But writing in the code for example: notif.soundName=[[@%@/Documents/MySound.m4a lastPathComponent] copy];, when the app is in the background modality, the notification sound is the default. Kindly I would like if anyone could help me in solving this problem if it is possible.The UILocalNotification settings are the following: UIUserNotificationType types = UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert; UIUserNotificationSettings *mySettings = [UIUserNotificationSettings settingsForTypes:types categories:nil]; [[UIApplication sharedApplication] registerUserNotificationSettings:mySettings]; UILocalNotification
1
0
548