#import <CoreTelephony/CTCallCenter.h>
#import <CoreTelephony/CTCall.h>
CTCallCenter *gclsCallCenter = [[CTCallCenter alloc] init];
gclsCallCenter.callEventHandler=^(CTCall* call){
if ( call.callState == CTCallStateIncoming ) { //전화가 걸려옴.
LOG(@"CTCallStateIncoming");
}
if ( call.callState == CTCallStateDialing ) {
LOG(@"CTCallStateDialing");
}
if ( call.callState == CTCallStateConnected ) {
LOG(@"CTCallStateConnected");
}
if ( call.callState == CTCallStateDisconnected ) { //전화가 끊어짐.
LOG(@"CTCallStateDisconnected");
}
};
'프로그래밍 > iOS' 카테고리의 다른 글
[iOS] 버튼 멀티터치 막기 (0) | 2016.08.23 |
---|---|
[iOS] 시스템 언어 가져오기 (0) | 2016.08.22 |
[iOS] Annotation View (0) | 2016.07.29 |
[iOS] 다국어가 적용되지 않는 언어를 선택할 시 (0) | 2016.07.01 |
[iOS] UIImage 회전 함수 (0) | 2016.06.20 |