top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What network an iPhone is connected to (LTE vs GSM). How to confirm this ?

+6 votes
568 views

With the release of iOS 6 and iphone-5 I'm trying to figure out how my app can know if the phone is in LTE mode vs GSM mode.

I haven't seen any updates to the Reachability API which can give whether it is connected to Wifi vs WWAN but I need to know what kind of WWAN connection it is.

Any ideas?

posted Feb 12, 2014 by Kanika Prashar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

For iO6 and below models, you cannot do this.

As of iOS 7, you can find this out using the

currentRadioAccessTechnology property ofCTTelephonyNetworkInfo in the CoreTelephony framework.

#import <CoreTelephony/CTTelephonyNetworkInfo.h>

CTTelephonyNetworkInfo *networkInfo = [CTTelephonyNetworkInfo new];

if ([networkInfo.currentRadioAccessTechnology
isEqualToString:CTRadioAccessTechnologyLTE]) {
// ... }

answer Feb 13, 2014 by Hiteshwar Thakur
Similar Questions
+1 vote

I want to check specified table contains value or its empty. I used number of complex method to find but no luck, any body can help me.

+1 vote

How to declare single parameter which accept multiple values.

+1 vote

How to use default values for parameter in function. What will happens when value is not passed for a default parameters.

0 votes

I am facing situation to use external parameter name to a function parameter name .. How to achieve this

0 votes

Is it possible to set multiple return type for function in SWIFT. If yes please provide me syntax .

...