我知道如果手机可以访问Wifi或3G网络,可访问代码将提供。
但是,如果手机上3G和Wifi,可达性代码默认为手机上有Wifi,我无法检测3G网络是否启用(飞行模式开启或关闭)。
当Wifi也开启时,我需要特别了解3G模式是打开还是关闭。
以下是代码:
Reachability *reachability = [Reachability reachabilityForInternetConnection];
[reachability startNotifier];
NetworkStatus status = [reachability currentReachabilityStatus];
NSLog(@"status: %u", status);
if(status == NotReachable) //status = 0
{
//No internet
NSLog(@"nothing is reachable");
}
if (status == ReachableViaWiFi) //status = 1
{
//WiFi
NSLog(@"Wifi is available");
}
if (status == ReachableViaWWAN) //status = 2
{
//3G
NSLog(@"3G is available");
}
NSLog(@"%@", s);
即使3G开启和Wifi,基本上状态也会返回1.
这可能吗?
非常感谢帮助。
答案 0 :(得分:1)
更新:目前似乎无法实现。但是,如果有帮助,您可以尝试以下代码。
Code1:只是一个想法。没试过这个。
if (status == ReachableViaWiFi) //status = 1
{
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tel://"]]) {
NSLog(@"Wifi and 3G are available");
} else {
NSLog(@"Wifi is available, but 3G is not available");
}
}
代码2:
对于内部应用,您可以使用此方法as mentioned here,
注意:这会使用私有API,因此如果您在appstore应用中使用它,您的应用就会被拒绝。
将以下内容复制粘贴到RadioPreferences.h
@protocol RadiosPreferencesDelegate
-(void)airplaneModeChanged;
@end
@interface RadiosPreferences : NSObject
{
struct __SCPreferences *_prefs;
int _applySkipCount;
id <RadiosPreferencesDelegate> _delegate;
BOOL _isCachedAirplaneModeValid;
BOOL _cachedAirplaneMode;
BOOL notifyForExternalChangeOnly;
}
- (id)init;
- (void)dealloc;
@property(nonatomic) BOOL airplaneMode;
- (void)refresh;
- (void)initializeSCPrefs:(id)arg1;
- (void)notifyTarget:(unsigned int)arg1;
- (void)synchronize;
- (void *)getValueForKey:(id)arg1;
- (void)setValue:(void *)arg1 forKey:(id)arg2;
@property(nonatomic) BOOL notifyForExternalChangeOnly; // @synthesize notifyForExternalChangeOnly;
@property(nonatomic) id <RadiosPreferencesDelegate> delegate; // @synthesize delegate=_delegate;
@end
然后尝试如下。
id rp = [[RadiosPreferences alloc] init];
BOOL status = [rp airplaneMode];
return status;
答案 1 :(得分:1)
目前,根据Apple指南并且未使用其私有API,iPhone无法在iPhone上执行此操作。