重複の可能性:
xcode 4.2 サウンドボード?
こんにちは、iPhoneアプリ用のサウンドボードを作成していますが、コードにエラーなどが発生し続けています.Xcode 4.2を使用していますが、新しいので、明確にしてください.お時間をいただきありがとうございます。
.h すべて問題ありません。エラーはないと思います
#import <UIKit/UIKit.h>
#import <AudioToolbox/AudioToolbox.h>
@interface ViewController : UIViewController {
}
-(IBAction)sound1:(id)sender;
@end
.m これはエラーのあるものです
#import "ViewController.h"
//@interface ViewController ()
@implementation ViewController
-(IBAction)sound1:(id)sender {
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef soundFileURLRef;
soundFileURLRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @"sound1" , CFSTR ("wav") , null);
}
uint32 soundID;
AudioservicecreatesystemsoundID(soundfileURLRef, &soundID);
AudioservicesPlaysystemsound(soundID)
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
@end
ありがとう、あなたが私を助けてくれることを願っています