Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 793
sujyanarayan Avatar asked Dec 03 '22 12:12

sujyanarayan


1 Answers

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!!

like image 172
Faiz Avatar answered May 07 '23 20:05

Faiz