Tagged Questions

Use the Core Telephony framework to obtain information about a user’s home cellular service provider—that is, the provider with whom the user has an account. Carriers can use this information to write applications that provide services only for their own subscribers. You can also use this framework ...

learn more… | top users | synonyms

16
votes
4answers
4k views

Retreiving Carrier Name from iPhone Programmatically

Is there a way to know the cell carrier on an iPhone programatically ? ** update ** I am looking for the carrier name which the iPhone is connected to.
11
votes
2answers
304 views

iPhone, call another phone number in response to the first not answering?

I am attempting to create an application that will initiate a call to a priority 1 contact on a call-center-like list. Then, if that contact does not answer (let's forget the whole problem of ...
6
votes
2answers
643 views

How to get Mobile Country and Network code on an iPhone

Is there any way of getting the mnc and mcc numbers on an iPhone?
5
votes
4answers
714 views

Unhiding a view is very slow in CTCallCenter callEventHandler

Reposting with more concise and focused question after original question went unanswered. Also adding more insight into the problem after another day of research: In my app delegate ...
5
votes
2answers
5k views

Detecting call state in iOS4

I would like to know if there is a possibility to detect if the user is in call from an application that is currently in background. Or, receive a notification when the call is ended if the call was ...
5
votes
4answers
235 views

Is there a way to tell if your app is being used while the user is on the phone?

There are certain portions of my app that would be better to highlight to the user if they're on the phone. Is there a call to check to see if we're on the phone? Unfortunately, "call" is a horrible ...
4
votes
1answer
170 views

iPhone - how to determine carrier of the device (AT&T, Verizon, etc?)

Is there a way to get information about the carrier of iPhones programmatically?
4
votes
1answer
511 views

Does CTCarrier mobileNetworkCode change when roaming?

The documentation states for CTCarrier's carrierName "The value does not change if the user is roaming; it always represents the provider with whom the user has an account." It does not say the same ...
4
votes
3answers
555 views

Get low-level iPhone network info

I have two free apps, iSys and iSysMonitor, that report info about my iPhone. Interestingly, they disagree regarding the IP address of my cell connection. Also, neither lists the name of my WiFi ...
4
votes
4answers
3k views

Is there any way to determine if the iphone is roaming?

I am working on an iPhone application and would really like to determine if the device is roaming so that I can intelligently avoid costing my users expensive connections if out of their home network. ...
3
votes
1answer
290 views

iOS - _OBJC_CLASS_$_CTTelephonyNetworkInfo not found?

I am using the following code to get network info about my iPhone - #import <CoreTelephony/CTTelephonyNetworkInfo.h> #import <CoreTelephony/CTCarrier.h> CTTelephonyNetworkInfo *netInfo ...
3
votes
3answers
568 views

How can I use private APIs to block incoming calls in an iOS application?

I would like to be able to selectively block incoming calls in an iOS application I'm writing. This is intended for personal use, not the App Store, so I'm fine with using private APIs to accomplish ...
3
votes
1answer
255 views

iphone code to calculate few transmission parameters like CIR, FER, RSSI etc

Looking for a sample code or tutorial to fetch few transmission parameters like 1. RXlevel (Signal Strength) 2. RXQual (Bit Error Rate) 3. C/I (carrier to interference) 4. FER (Frame erase rate 6. ...
3
votes
3answers
1k views

Get cell towers info in iOS (CoreTelephony?)

I need to get infos about the nearest cell towers (something like the cell id). To identify a place without consuming power, by making a list of possible cells if for example. I looked at the ...
2
votes
1answer
882 views

How can I access call log history on IOS5

I used FMDatabase and this path (/private/var/wireless/Library/CallHistory/call_history.db) to access the call logs on IOS4. After I updated to IOS5, it just gave me a "permission denied" exception. I ...
2
votes
1answer
413 views

Capture incoming Callevent using coretelephony?

I want to create an application for jailbroken iphone (ios 4.0 or greater). I want my application to remain running and whenever my phone starts ringing (for an incoming call), my application should ...
2
votes
1answer
330 views

Getting carrier's name with CoreTelephony returns just “Carrier”

I tried getting carrier name with this code (using CoreTelephony): CTTelephonyNetworkInfo *netinfo = [[CTTelephonyNetworkInfo alloc] init]; CTCarrier *carrier = [netinfo subscriberCellularProvider]; ...
2
votes
1answer
234 views

How to get the Phone number from the callID(call Identifier) of call which returned form callcenter in iphone sdk?

I had tried to get the call status and call Identifier of a call using coreTelephony.framework.And Need to get the phone number of the incoming call.Is it possible to get the phone number using the ...
2
votes
2answers
913 views

How to get the last declined number of iphone in iphone sdk

I need to get access to the call log of an iphone programatically. I came to know that it is not possible to get the call log in ios sdk. Is there any new API's available to get access of the call ...
2
votes
2answers
459 views

Linker cannot find a class that should be there

I have a project that uses the Core Telephony framework. Recently my code stopped working on a CTCarrier category, the linker complains that it can’t find the CTCarrier class: Undefined symbols: ...
2
votes
1answer
261 views

iPhone sdk call interception

We are developing a app .The function of the app is "when we got a call automatically we have to reply through text/voice message .So,can you tell us whether it possible in iPhone.If means guide us to ...
1
vote
1answer
66 views

User current country - based on current location of the user

I would like to check in which country the user is - I have tried a few ways but none give the requested result. My main goal is when the app launches check in which country the user is and based on ...
1
vote
2answers
129 views

When and where should CTCallCenter be released?

I'm using CTCallCenter to register to call events. CTCallCenter *callCenter = [[CTCallCenter alloc] init]; callCenter.callEventHandler=^(CTCall* call) { if (call.callState == ...
1
vote
0answers
88 views

What do these undocumented mobileNetworkCodes from CTCarrier mean?

I noticed that sometimes CTCarrier.mobileNetworkCode returns undocumented values. Examples below: "VZW" - is this Verizon? "" (an empty string) instead of nil when device has no SIM card installed ...
1
vote
1answer
217 views

Monotouch Phone/Call state?

Is there any way in Monotouch to read the current state on the phone or caller service? Im trying to find some way of reading if a call is active or a call is on hold etc. Googling on this haven't ...
1
vote
2answers
346 views

Link against CoreTelephony Framework (iOS)

Does anyone know why I get a linker error when I try to compile the following code: extern void * _CTServerConnectionCreate(CFAllocatorRef, int (*)(void *, CFStringRef, CFDictionaryRef, void *), int ...
1
vote
1answer
92 views

Getting mobile number from log to the app

My app deals with phone calls.I want to send an auto textmessage(sms) to the dialer when the line is busy or else user is busy or else call is in hold....Here I want to get the mobile no of the dialer ...
1
vote
1answer
505 views

iPhone call duration

For our iPhone application, we would like to call a particular phone number, then fetch the total duration of that call after it has completed. This is to manage the billing of that particular phone ...
1
vote
1answer
590 views

iPhone - Track cellular data usage

Is there a way to track cellular data usage on iPhone ? There are lot of apps which does the same like 'Dataman' and 'DataUsage' Basically I am looking for a programmatic way to get information ...
1
vote
1answer
238 views

When SIM is not available how should we handle MFMessageComposeViewController

I am using MFMessageComposeViewController to send text message via my App. But I have a problem when we remove the SIM and try to send message. Is there any delegate available to track whether the ...
1
vote
1answer
274 views

CTServerConnectionGetCellID routine core telephony

I want to retrive some cellular network informations such as cellId and LAC. I know that there is no official way to do that, but i still experiencing some CoreTelephony routines such as ...
1
vote
1answer
230 views

How can I get the callers phone number from an incoming call on iphone

Hi I want to build an app that does something when an incoming call comes in. But I think that the phone needs to be jailbroken on the iphone to access the class that does that. I want to do it ...
1
vote
1answer
500 views

How to identify when sim changed in iphone

how to find if a user changes his SIM card from his phone(iPhone). we can find "mobileCountryCode,isoCountryCode,mobileCountryCode and mobileNetworkCode" through programatically these are not specific ...
1
vote
2answers
1k views

how to use CoreTelephony framework

can any one help me in understanding CoreTelephony framework by telling among any one given below any simple apps example that is using core-telephony framework i am able to add core-telephony ...
1
vote
4answers
4k views

Require CoreTelephony framework examples

Greetings everyone. Can any one has a working example for the CoreTelephony framework? I dumped all the CoreTelephony headers using class-dump and added them to ...
0
votes
0answers
17 views

how to get the call connected time using Telephony framework using ios5?

I want to capture the timestamp of incoming call and out going call. I read that, this could be possible using CoreTelephony Framework. I have tried the code given here Capture incoming Callevent ...
0
votes
0answers
81 views

RxQuality in iPhone

can we access RxQuality in iPhone application when user make a call.I want to do it for JailBreak. i am able to access signal strength though following code int getSignalStrength() { void ...
0
votes
2answers
94 views

Information about blocked calls in iPhone

I want to get information about blocked and dropped calls. When you call someone through your phone, sometimes your call get blocked or dropped, then you hear a message, "Please try again". I want to ...
0
votes
0answers
48 views

How can we know that a call has ended when app is in background in ios4

Is it possible to get notified in ios sdk that a call has ended when app is in background or when the app has been closed completely. I have used the code here Here but this only works when app is ...
0
votes
0answers
46 views

App crash at _CTServerConnectionCellMonitorGetCellInfo

Hi I am using the code of valexa and app getting crash while getting signal strenght at this line if (!mach_port || !conn) return; int count = 0; ...
0
votes
0answers
52 views

How to use CTCallJoinConference to initiate a conference call

I have the following code - but i can't seems to find the API for CTCallJoinConference or any equivalent in order to create this conference call static void callback(CFNotificationCenterRef center, ...
0
votes
0answers
100 views

Interruption Handling In IPhone App @ incoming faceTimeCall & serviceproviderCall?

Case: ServiceProviderCall While My ios App is Running in ForeGround after launch, i can Handle Incoming call By CoreTelephony framework Successfully .by Following code CTCallCenter *callCenter = ...
0
votes
1answer
106 views

Detect if iPhone is in Airplane mode?

I need a way to detect if the iPhone is in Airplane Mode or not, I did some research and found: iphone how to check the Airplane mode? Which does not work, also I know I can set SBUsersNetwork to ...
0
votes
3answers
221 views

iOS I can't get my carrier name

as explained here -> Retreiving Carrier Name from iPhone Programmatically i'm trying to get my carrier's name, i'm using this code CTTelephonyNetworkInfo *netinfo = [[CTTelephonyNetworkInfo alloc] ...
0
votes
1answer
255 views

How to create auto dialer in iPhone using MonoTouch?

I need to create button to call one contact number, that number is the default number and I will mention that number in button click event. When I click on button need to dial that number in iPhone ...
0
votes
1answer
40 views

Error while importing the framework

My app deals with phone call.So I added coretelephony framework to my project.But when I try to import the framework to my appdelegate,I get the error "No such file directory" Can any one find the ...
0
votes
1answer
116 views

Is the callID in call telephony and record id in address book same in iphone?

Can i fetch phone number from callID from core telephony framework ? Is the callID in call telephony and record id in address book same in iphone ?
0
votes
1answer
172 views

How to generate local notification at the end of the incoming call in iphone?

I want to know how to generate local notification at the end of the incoming call in Iphone using core telephony frame work
0
votes
1answer
474 views

How to detect incoming and outgoing call END event in my Iphone app?

Here is a scenario: I make a call from my application .When the call ends i need to fire a event such as calling a web service .How can do with CTcallcenter in core telephony frame work ? Thank you
0
votes
0answers
137 views

Specific expression in if condition causes 7 second delay in execution [closed]

Possible Duplicate: Unhiding a view is very slow in CTCallCenter callEventHandler I've been stuck on a problem for two days. I asked on SO yesterday, but so far haven't been able to find a ...

1 2