문제

I am using this

AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);

Importing that

#import <AudioToolbox/AudioServices.h>

Then an error is what I got!

Undefined symbols for architecture armv7:"_AudioServicesPlaySystemSound

Why is that?

도움이 되었습니까?

해결책

You probably haven't added the AudioToolbox.framework to your project.

You can do this in the Build Phases section of your Target configuration. Under Build Phases select Link Binary with Libraries. Make sure AudioToolbox.framework is in the list of frameworks. If it isn't click the + button at the bottom and select AudioToolbox.framework from the list.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top