iPhone如何检查飞行模式?(iphone how to check the Airplane m

2019-07-17 14:49发布

HI,

我想请检查是否已开启飞行模式或不..如何检查?

感谢+如何检查用户使用WIFI或GPRS或EDGE。 如何区分?

Answer 1:

如果你只是想显示通知,当用户处于飞行模式,那么它足以使你的应用程序的plist文件SBUsesNetwork财产。 当你的代码是使用网络,系统会提示用户自动关闭飞行模式。

例如参见这篇文章 。



Answer 2:

我不知道你是否能为飞行模式而专门检查可达性例子,从iPhone ADC网站,您可以检查iPhone已经接入互联网。



Answer 3:

这个答案的第二部分 - 如何告诉用户是(WiFi或3G / EDGE)网络的类型。 它使用来自苹果的可达性代码。 在您的应用程序代理把这个在您的didFinishLaunchingWithOptions方法:

Reachability *curReach = [Reachability reachabilityWithHostName: @"www.apple.com"];
NetworkStatus netStatus = [curReach currentReachabilityStatus];
switch (netStatus)
{
    case NotReachable:
    {
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Network Status" message:@"Please note: Network access is required to retrieve images." delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
        [alert show];
        [alert release];
        break;
    }
    case ReachableViaWiFi:
    case ReachableViaWWAN:
    {
        break;
    }
}   


Answer 4:

对于SDK 3.0

(http://bbs.51pda.cn/simple/?t4861.html)

#import unistd.h
#include dlfcn.h
#include stdio.h

typedef int (*airType)();
static int (*real_air)() = NULL;

int main(int argc, char **argv)
{

int status = 0;
void *libHandle = dlopen("/System/Library/PrivateFrameworks/CoreTelephony.framework/CoreTelephony", RTLD_LAZY);
real_air = (airType)dlsym(libHandle, "CTPowerGetAirplaneMode");

if(! real_air)
{
printf("something wrong");
}
else
{
status = real_air();
}

printf("%d",status);

return status;
}

Debian的:〜#臂苹果darwin9-GCC -lobjc -bind_at_load -F “/系统/资源库/ PrivateFrameworks” -framework CoreTelephony test.c的-o测试



文章来源: iphone how to check the Airplane mode?