sujyanarayan
sujyanarayan

Reputation: 79

how to get header files from CoreTelephony.framework for telephone control api

I want to develop an iphone re-dialer application, for that coretelephony.framework is needed as it contains required telephone control api. But i'm unable to class-dump headers of coretelephony.framework as it is C headers. Can anybody help me to dump headers of coretelephony framework?

Thanks in Advance.

Upvotes: 4

Views: 6963

Answers (1)

Faiz
Faiz

Reputation: 181

CoreTelephony framework contains four files only. so you can import these classes as follow:

#import<CoreTelephony/CTCallCenter.h>    
#import<CoreTelephony/CTCall.h>   
#import<CoreTelephony/CTCarrier.h>    
#import<CoreTelephony/CTTelephonyNetworkInfo.h>

hope it will help!!

Upvotes: 18

Related Questions