-3

他の同様の質問全体を読んで修正しようとしましたが、何も機能しませんでした。

#import "ViewController.h"
//sound
@implementation SoundappViewController
-(IBAction)play; {
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef soundFileURLRef;
soundFileURLRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @"app 3", CFSTR ("m4a"), NULL);
   UInt32 (soundID);
   AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID);
   AudioServicesPlaySystemSound(soundID);
    @end              // Here i get the error Unexpected @ in program
4

1 に答える 1

0
  • 削除する ';' メソッドのヘッダー行で
  • メソッドの最後 (@end の直前) に '}' がありません
于 2012-12-12T16:24:26.250 に答える