0

このコードを試しましたが、うまくいきませんでした。

-(void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];

NSString *soundPath = [[NSBundle mainBundle] pathForResource:@"paying with coins and bills" ofType:@"wav"];
AudioServicesCreateSystemSoundID(CFBridgingRetain([NSURL fileURLWithPath:soundPath]), &(soundID));
AudioServicesPlaySystemSound (soundID);

}

xcode プロジェクトを実行した場合にのみ再生されます。

私の要件は、アプリを開くたびにiPadでサウンドを再生する必要があることです。私を助けてください

4

1 に答える 1

0

コードを AppDelegate.m に移動してみてください。

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

このメソッドは、アプリがアクティブになったときに呼び出されます。これは、ケースに適合する場合があります。

于 2013-10-24T03:08:13.347 に答える