I cannot play my sound which is m4a apple format. I thought the format was supported though. Any idea that could help ? Thank you !
#import "PhoneViewController.h"
#import <AVFoundation/AVFoundation.h>
@interface PhoneViewController ()
@property (strong, nonatomic) AVAudioPlayer *optique2000Audio;
@end
@implementation PhoneViewController
- (IBAction)cinq {
NSString *backgroundMusicPath = [[NSBundle mainBundle] pathForResource:@"optique2000" ofType:AVFileTypeAppleM4A];
NSURL *backgroundMusicURL = [NSURL URLWithString:backgroundMusicPath];
NSError *error;
self.optique2000Audio = [[AVAudioPlayer alloc] initWithContentsOfURL:backgroundMusicURL error:&error];
[self.optique2000Audio play];
}
@end