How to get standalone5G network type in iOS

137 Views Asked by At

In my project, i need to get which 5G network is connected. e.g. standalone5G,dualConnectivity5G(_:)

I am able to get Interfacetype by

if let networktype = NetworkReachability.shared.interfaceType
{
    switch networktype
    {
    case .cellular:
        print("mobiledata Newtwork")
    case .wifi:
        print("wifi Newtwork")
    case .wiredEthernet:
        print("LAN Newtwork")
    default:
        print("Other Newtwork")
    }
}

But Get Following error while

enter image description here

if let networktype = NWInterface.RadioType.Cellular
{
    switch networktype
    {
    case .standalone5G(<#T##Network.NWInterface.RadioType.Cellular.NewRadio5GVariant#>):
        print("CDMA Network")
        default:
        print("Other")
    }
}
0

There are 0 best solutions below