반응형
[iOS Objective c] 진동 구현하기
1. Framework 에서 AudioToolbox.framework 를 import 해준다.
2. 헤더 파일에 다음 코드를 추가한다.
#import <AudioToolbox/AudioToolbox.h>
3. 진동을 사용할 부분에 다음 코드를 추가한다.
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
끝
반응형
'iOS > Swift + Objective-c' 카테고리의 다른 글
[objective c] NSString contains string (0) | 2017.04.21 |
---|---|
[iOS Objective c] 화면 흔들기 (view shake) 구현 (0) | 2017.03.31 |
[iOS] NSMutableArray 배열 순서 섞기 (0) | 2017.03.30 |
[Objective-c] KeyChain example (0) | 2017.03.28 |
[Objective-c] @synthesize 사용 안해도 돼요 (0) | 2017.03.20 |