我在myScene.h中有以下代码:
#import <AVFoundation/AVFoundation.h>
[self runAction:[SKAction playSoundFileNamed:@"fire.m4a" waitForCompletion:NO]];
音频文件位于主文件夹中.当我运行应用程序并触摸应用程序关闭时,我收到以下错误:
Terminating app due to uncaught exception 'Missing Resource',reason: 'Resource fire.m4a cannont be found in the main bundle'
我认为这是在Sprite Kit中播放音频的方法,但我一定是做错了什么..
@H_502_14@