I'm making an app which vibrates once a timer reaches a certain limit.
However, when calling
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
Xcode comes up with two errors:
Undefined symbols for architecture i386:
"_AudioServicesPlaySystemSound", referenced from:
-[drawGraph drawRect:] in drawGraph.o
ld: symbol(s) not found for architecture i386
and
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Any ideas on what is causing these errors?