Dear friends of StackOverflow, I found out how to get the MNC (Mobile Network Code) and MCC (Mobile Country Code) for an iOS device but I really need to get information about the CellID and the LAC (Location Area Code). It's not an app which is so supposed to get into the AppStore, we need this for internal testing. I know, its possible to get MNC/MCC like that:
var mob = CTTelephonyNetworkInfo()
if let r = mob.subscriberCellularProvider {
print("CountryCode: \(r.mobileCountryCode!)")
print("NetworkCode: \(r.mobileNetworkCode!)")
}
But are there any possibilities for getting LAC/CellID using swift in iOS 11?