他の同様の質問全体を読んで修正しようとしましたが、何も機能しませんでした。
#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