0

Apple が作成した Reachability.h クラスの connectionRequired 変数はどういう意味ですか? 平易な英語で?

//WWAN may be available, but not active until a connection has been established.
//WiFi may require a connection for VPN on Demand.
- (BOOL) connectionRequired;

それは意味しますか:

--接続できましたが、接続していませんか? -- パスワードが必要です -- VPN が必要です

この変数が true かどうかを確認する必要があるのはいつですか?

4

2 に答える 2

0

Reachability.m から

    if ((flags & kSCNetworkReachabilityFlagsConnectionRequired) == 0)
    {
        // if target host is reachable and no connection is required
        //  then we'll assume (for now) that your on Wi-Fi
        retVal = ReachableViaWiFi;
    }

...

- (BOOL) connectionRequired;
{
    NSAssert(reachabilityRef != NULL, @"connectionRequired called with NULL reachabilityRef");
    SCNetworkReachabilityFlags flags;
    if (SCNetworkReachabilityGetFlags(reachabilityRef, &flags))
    {
        return (flags & kSCNetworkReachabilityFlagsConnectionRequired);
    }
    return NO;
}

AppDelegate.m から

    if(connectionRequired)
    {
        baseLabel=  @"Cellular data network is available.\n  Internet traffic will be routed through it after a connection is established.";
    }
    else
    {
        baseLabel=  @"Cellular data network is active.\n  Internet traffic will be routed through it.";
    }

したがって、デバイスが Wi-Fi または 3G を使用するかどうか、および接続がアクティブであるか、デバイスがそれを確立するかを大まかに示しています。また、ユーザーが VPN を使用する場合、デバイスは最初に VPN 接続を確立するように求めます。

于 2013-06-07T08:33:41.117 に答える