Xcode 4.3を使用していますが、サウンドの再生に問題があります...ここで見つけた回答からこのプロジェクトをダウンロードしましたが、彼のファイルを私のもので変更するとhttp://dl.dropbox.com/u/63377498/AudioText .zip何も聞こえません。私のシミュレータの問題でしょうか?私のマックの設定?わかりません...それは私が使用するコードです:
@interface ViewController ()
@property (nonatomic, strong) AVAudioPlayer *theAudio;
@end
@implementation ViewController
@synthesize theAudio = _theAudio;
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSString *soundPath =[[NSBundle mainBundle] pathForResource:@"sad" ofType:@"caf"];
NSURL *soundURL = [NSURL fileURLWithPath:soundPath];
NSError *error;
self.theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:soundURL error:&error];
}
- (IBAction)pushBell {
[self.theAudio play];
}