Core Telephony is an iOS framework by Apple

learn more… | top users | synonyms

-1
votes
0answers
8 views

Filter Messages in IOS6 [closed]

I want to Build an Application that Filter Messages from Imessages & then Copy them to a seperate DB , then delete them from the original DB . If there is an existing application that does the ...
0
votes
3answers
69 views

when can i was find iPhone app sample code for used CoreTelephony framework?

I have requirement block the incoming call, outgoing call and sms. so any one share your knowledge how to do that task. Then give some samples or sample code using CoreTelephony framework in iPhone ...
2
votes
0answers
38 views

VoIP equivalent of Coretelephony

I have Coretelephony working for monitoring incoming and outgoing calls, however, I also needs this functionality for VoIP calls. Is there are framework with similar features as coretelephony but for ...
0
votes
2answers
69 views

How to find Location Area Code in iOS

I need to obtain the LAC of a Cell Tower in iOS. I know that we can obtain MCC and MNC in FieldTest Mode. CTCarrier provides MCC and MNC as well. VAFieldTest (http://github.com/valexa/VAFieldTest) ...
0
votes
0answers
117 views

CTTelephonyCenterAddObserver Private API not receiving disconnected event when call is connected and duration of call is more than 5/6 sec

I am using CTTelephonyCenterAddObserver(ct, NULL, callback, NULL, NULL, CFNotificationSuspensionBehaviorHold); to log the phone calls. Here is the code of call back method static void ...
0
votes
1answer
89 views

Does CoreTelephony framework works in JailBreak device?

I have used coretelephony framework in my application. It worked when I test my application in non-jailbreak device. Today when I asked my client to test the app, it didn't work for him and he is ...
0
votes
0answers
56 views

Setting a bool after a phone call - MobileSubstrate

I have this code, static BOOL tweakOn; %hook SpringBoard - (void)setExpectsFaceContact:(BOOL)expectsFaceContact { // Check if tweak is on NSDictionary *dict = [[NSDictionary alloc] ...
1
vote
0answers
83 views

CoreTelephony`(anonymous namespace)::GetRadioModuleProperty Error in XCode when attempting to run App on a Test Device

I'm relatively new to iPhone development and XCode in general and have no idea how to begin troubleshooting an CoreTelephony issue . I come from a Java background so memory management and pointers are ...
3
votes
0answers
171 views

How to obtain cell tower data for iPhone 5?

I'm trying to get cell tower data with my iPhone 5. I've been testing with VAFieldTest (https://github.com/valexa/VAFieldTest). In the file VAFieldTestViewController.m ...
-1
votes
3answers
1k views

Block the call from specific number in iphone [duplicate]

I want to block the phone call from the particular phone numbers. Is this possible? I had searched and found this link :- Block phone call post But I don't get the exact idea whether it is possible ...
2
votes
4answers
440 views

How to find out carrier signal strength programatically

Here is the code that I have used to find out carrier signal strength: int getSignalStrength() { void *libHandle = dlopen("/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony", ...
0
votes
0answers
100 views

How to fix _CTServerConnectionRegisterForNotification crash happening in VAFieldTest application

I am trying to run VAFieldTest application in my device, but the application got crashed at this line _CTServerConnectionRegisterForNotification. How can I fix this crash? Here are the parameters I ...
0
votes
0answers
183 views

CoreTelephony crash EXC_BAD_ACCESS (without using the framework)

My app is crashing for some users but I can't figure out what the problem is. I use crashlytics for reports, and this is what it says (crashes in main thread): Exception Type: EXC_BAD_ACCESS Code ...
0
votes
0answers
125 views

CTCallCopyAddress - “Undefined symbols for architecture armv7”

Firstly - I am developing a jailbreak tweak, hence the use private APIs. I am following the code here however, I'm getting the following compiler error: Undefined symbols for architecture armv7: ...
2
votes
1answer
925 views

Intercepting phone call - iPhone (correct method to hook in CoreTelephony)

I am new to the jailbreak tweak development scene. I am trying to figure out the appropriate method to 'hook' so I can intercept an incoming call (and then run some code). I have dumped the header ...
1
vote
1answer
129 views

iOS, Determine network access type

I am trying to get the network type on an iPhone. I am using the following procedure: (NSNumber *) dataNetworkTypeFromStatusBar { UIApplication *app = [UIApplication sharedApplication]; ...
0
votes
1answer
313 views

Using IOS SDK is it possible to detect an incoming call when another call is inprogress (in background)?

I am aware that we can get the call state info using CoreTelephony framework (using CTCallCenter).If a call is already in progress,is it possible to detect the new incoming call and one more thing is ...
-1
votes
2answers
137 views

Hiding phone number being called through iOS app [closed]

I want let users make calls through my app. Is there a way to hide the number being called, so that the privacy is protected? Thanks
2
votes
1answer
249 views

CoreTelephony crash

I am receiving this backtrace from TestFlight regarding one interesting crash. As far as I understood, the application crashes at some point, when using CoreTelephony. Can this be possible of ...
1
vote
0answers
119 views

CoreTelephony running on background iphone sdk

Is possible to run CoreTelephony framework in background mode? i'm making hardware for iphone ad i need when the iphone is in sleep mode and when you recived a call or sms my hardware make sound. i ...
0
votes
2answers
125 views

Find out who calling from my iOS app

Is there any possibility to find out who is calling when my app is launched or in background (doesn't matter). Generally can I get contact name ( John Doe for example ) from code ? I search the Core ...
1
vote
1answer
87 views

Retreiving Current Time from Carrier in iPhone

Is There is any way to get the current time from the Carrier. Like Auto Update time, Even if the Auto Update of time is Off from settings. Even if the Internet connection is not available.
1
vote
2answers
767 views

Access call history in iphone.? [duplicate]

Possible Duplicate: Reading call history in iPhone OS Hi my new requirement is to access calllog (incoming/outgoing/missed calls) from iphone. Is there any framework or API for accessing ...
-2
votes
1answer
239 views

Is is possible to develop an app to record phone conversations for iPhone?

Is it possible to develop an app to handle an incoming phone call for iPhone? I mean, I'm thinking to develop an app to record phone conversation for both outgoing and incoming calls. If it is an ...
0
votes
2answers
218 views

Getting iPhone carrier without CoreTelephony

Is there any way to get phone's carrier without using CoreTelephony framework? (1.2Mb is too big for my case for just getting the carrier)
0
votes
0answers
171 views

Programming IOS custom vibrations

How do you code custom vibrations in xCode now on iPhones? I see that there are ways to set custom vibration alerts in settings, but I dont' see code examples of how to do this via xCode. Thoughts?
0
votes
1answer
606 views

How to get user incoming call phone number in iOS device

I used CoreTelephony framework introduced in iOS SDK 4.0 to know about Incoming call & its dropped state. CTTelephonyNetworkInfo *tni = [[CTTelephonyNetworkInfo alloc] init]; callCenter = ...
0
votes
0answers
43 views

Cause for Call Disconnect

Can anyone perhaps tell me how I could determine the cause for a call disconnecting with iOS. I know there is an undocumented function called CTCallGetCauseCode, but does anyone know how to implement ...
10
votes
1answer
818 views

CallStateDisconnected only detected for incoming calls, not for calls made from my app

I cant detect end of call (state CallStateDisconnected), if i make call from my app. But if i receive call when my app is active, i can detect that state. I also receive state CTCallStateDialing twice ...
1
vote
0answers
209 views

iphone CoreTelephony and .mm file

I am using CoreTelephony to make a call to USSD number (I know it is not officially supported, but that doesn't matter right now). I've added a framework to project, imported all headers: ...
1
vote
0answers
67 views

Carrier BTS information in iOS

Is there a way how to get the current BTS the device is connected to? I went through CoreTelephony.framework and haven't found anything.
0
votes
0answers
193 views

ios: differentiate between a programmatic call Missed and Refused to answer

I need to make an iphone app which dials a cell number programatically and when not answered dials another number. I used core telephony framework to know the call states if dialed or connected. But i ...
0
votes
0answers
236 views

How to detect programmatically iphone in Roaming

It is possible to detect programmatically iphone in Roaming ?
1
vote
0answers
427 views

is IOS 6 provide any way for getting MISSED CALL number and RECEIVED CALL numbers??

I want to know missed call number and received call number through my application. Older ios versions(older than ios6.0) has no any method or frame work through which we can get missed call number and ...
0
votes
1answer
234 views

Detect GPS in iOS device with CoreTelephony

I was looking for a way to detect whether an iOS device has a GPS unit or not, and I ran into this question. I found the last answer very interesting: CTTelephonyNetworkInfo* netInfo = ...
1
vote
2answers
101 views

Is my update okay for iOS 3.0 users (I check if Core Telephony exists)?

Detail : I am ready to submit an update to my app to Apple. However, I have one area of doubt. I have added the following code in the header of one of my classes ... #import ...
4
votes
1answer
593 views

Sending MMS on iPhone using CoreTelephony

I am interested in sending an MMS within a private application on the iPhone. A lot of the information I need is proprietary, and therefore I can't find it anywhere. Basically, I'm looking for the ...
-6
votes
3answers
598 views

Restrict incoming call iphone app [closed]

I want to create an iPhone app that would restrict incoming calls and SMS from a given phone number. The phone would not ring or light up the screen. It simply would not do anything when a call was ...
0
votes
2answers
469 views

Hooking to a C function

I am wondering how do I hook to a function that is in the dylib, i.e. a C function. My target is to hook to a function CTRegistrationSetCellularDataIsEnabled that is in CoreTelephony. Thanks!
0
votes
0answers
130 views

VOIP application with ovh

Any one know if it is possible to implement VOIP service in application iPhone with OVH ( http://www.ovh.co.uk/telephony/ ) Thanks
1
vote
1answer
2k views

iOS 5 - CTCallCenter not working for me

My phone: iOS 5.1.1 Jailbroken using Absynth2 What I'm trying to do: detect an incoming call or when a call is being dialed... Okay here is my code that i placed inside the AppDelegate under ...
4
votes
2answers
3k views

Is it possible to determine if the SIM/Phone number has changed?

We have a product where the user registers by providing their phone number. However after they register they could potentially change their sim. Is it possible to programatically determine if the ...
2
votes
1answer
3k views

Sending an iMessage as simple as possible iOS

I want to be able to programmatically send an iMessage without anything else being done except calling a function that will send a text to a number with a message, both of which are text boxes. I'd ...
1
vote
0answers
542 views

How to display info about the Cell Towers nearby?

I am looking for a way to display info about the cell towers located nearby. I know I have to use the CoreTelephony framework. I do not need to deploy it, so I do not care about Apple approve. Please ...
6
votes
1answer
801 views

iPhone background app to update the screen when a phone call is received

We are in the process of writing an iPhone app (that will be in the background) that would be notified when an incoming phone call comes. The app does some background work - going to a server ...
2
votes
1answer
2k views

iPhone - Detecting SIM card availability

I am using the answer in this topic. iPhone - how to determine carrier of the device (AT&T, Verizon, etc?) which is the same as getting operator details in iphone. Although it works fine when ...
1
vote
1answer
588 views

iPhone: Access to number of missed calls and number of unread messages?

I'm wondering whether there is a way to get the number of missed calls, and the number of unread messages, on an iPhone (which is not jailbroken). I basically would like to know what the current ...
0
votes
1answer
933 views

Access USSD number in iOS via CoreTelephony framework and CTCallDialWithID

I need to call a USSD number that contains * and # in iphone (iOS) it tried a "tel:*100#" but this way dose not work with USSD characters I found some solution via CoreTelephony framework by using ...
1
vote
0answers
219 views

Daemon with launchd does not receive Call States

My iOS Daemon does not receive call state updates, although a handler inline method is defined. It seems to me, that the program does not enter the event loop. does anyone of you have any experience ...
0
votes
0answers
857 views

Get Cell-Tower information on iOS

I am working on a field-testing application which targets on iPhone 4. Therefore, it would be kind of cool, to get any information on the Serving Cell. I can get the signal strength using ...

1 2 3