views:

230

answers:

2

Hi, 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.

A: 

i don't know what you're asking

but

#impport<CoreTelephony/CoreTelephony.h>
mihirpmehta
coretelephony is a private framework and hence it cant be imported directly.We have to first dump the headers in it and include that and my problem is how to dump that.
sujyanarayan
A: 

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

Faiz