オーディオを再生しようとしている xcode (4.3.2) プロジェクトがあります。テストするiPad2デバイスが2つあります。どちらも iOS 5.1 (9B176) を実行していますが、一方は 3G で、もう一方はそうではありません。サウンドはシミュレータと 3G 以外の iPad で再生されますが、3G デバイスでオーディオを再生できません。
ただし、デバイスにあるプログラムではオーディオが機能します。私がサウンドを再生する方法は次のとおりです
-(void) playSound {
NSString* filePath = [[NSBundle mainBundle] pathForResource:@"gbm_menu_music"
ofType:@"m4a"];
NSURL *soundURL = [NSURL fileURLWithPath:filePath];
avPlayer = [[AVPlayer alloc] initWithURL:soundURL];
[avPlayer play];
}
私はどちらから電話しますか
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
どんな助けでも大歓迎です。