Xcode iOS 아이폰(iphone) 진동(Vibrate) 추가



1. 우선 프로젝트에 AudioToolbox 프레임 워크를 추가 합니다 
( xcode4.2인 경우 아래 그림과 같이 가서 +버튼 눌러서 추가 하시면되요 ^^)



2. 다음에 .m에 아래 라이브러리를 추가하고

#import <AudioToolbox/AudioToolbox.h>


3. 아래에 코드를 추가하면 진동이 추가 되요 ㅎㅎ

    AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);


4.단, 진동의 쎄기, 길이를 바꾸는것은 리젝(rejected)대상이라고 하네요 


1 댓글