iPhone如何查看飞行模式?

时间:2009-09-10 11:08:15

标签: iphone airplane

HI,

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

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

4 个答案:

答案 0 :(得分:11)

如果您只想要显示通知,当用户处于飞行模式时,则足以在您应用的plist文件中启用SBUsesNetwork属性。当您的代码使用网络时,系统会提示用户自动关闭飞行模式。

参见例如this post

答案 1 :(得分:2)

我不确定您是否可以专门检查飞机模式,但是iphone adc网站上的reachability示例可以让您检查iphone是否可以访问互联网。

答案 2 :(得分:2)

这回答了问题的第二部分 - 如何判断用户所处的网络类型(Wifi或3g /边缘)。它使用Apple的Reachability代码。将它放在app delegate中的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;
    }
}   

答案 3 :(得分:2)

适用于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:〜#arm-apple-darwin9-gcc -lobjc -bind_at_load   -F“/ System / Library / PrivateFrameworks”-framework CoreTelephony test.c -o test