NSString *path = [NSString stringWithFormat:@"/System/Library/Audio/UISounds/photoShutter.caf"];
NSURL *audioPath=[NSURL URLWithString:path];
SystemSoundID soundId;
AudioServicesCreateSystemSoundID((__bridge CFURLRef)audioPath, &soundId);
AudioServicesPlayAlertSound(soundId);