I am creating an application that vibrates when the timer reaches a certain limit.
However, when called
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
Xcode contains 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 causes these errors?
source share