我有一个 xcode (4.3.2) 项目,我正在尝试播放音频。我有两台 iPad2 设备要测试。两者都运行 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
任何帮助表示赞赏。