こんにちは、Xcode サウンドボードを作成しましたが、iPhone で実行するとこのエラーが発生し、解決方法がわかりません。
//
// main.m
// sound
//
// Created by Paul masters on 27/04/2012.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
エラーは
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
スレッド 1: シグナル SIGABRT
ありがとう
これはView Controller.hです
#import <UIKit/UIKit.h>
#import <AudioToolbox/AudioToolbox.h>
@interface ViewController : UIViewController
- (IBAction)yooo:(id)sender;
- (IBAction)boom:(id)sender;
@end
これはビューコントローラーです.m
- (IBAction)yooo:(id)sender {
CFBundleRef mainbundle = CFBundleGetMainBundle();
CFURLRef soundFileUrlRef;
soundFileUrlRef = CFBundleCopyResourceURL(mainbundle, (CFStringRef) @"tb1", CFSTR ("wav"), NULL);
UInt32 soundID;
AudioServicesCreateSystemSoundID(soundFileUrlRef, &soundID);
AudioServicesPlaySystemSound(soundID);}
- (IBAction)boom:(id)sender {
CFBundleRef mainbundle = CFBundleGetMainBundle();
CFURLRef soundFileUrlRef;
soundFileUrlRef = CFBundleCopyResourceURL(mainbundle, (CFStringRef) @"ta1", CFSTR ("wav"), NULL);
UInt32 soundID;
AudioServicesCreateSystemSoundID(soundFileUrlRef, &soundID);
AudioServicesPlaySystemSound(soundID);
}
@end
これはそのスレッド1エラーのある私のコードです!!