如果你希望使用iPhone的网络功能并保持长连接,并使用Wifi的话,你可能会发现一个问题,那就是在iPhone处于睡眠状态时,Wifi会中断,这样程序就无法保持连接。(iPhone非官方SDK)

下面的代码可能会帮你解决这个问题。

以下代码摘自MobileChat:

首先在applicationDidFinishLaunching方法中添加以下代码:

 IONotificationPortRef notificationPort;

root_port = IORegisterForSystemPower(self, &notificationPort, powerCallback, &notifier);

CFRunLoopAddSource(CFRunLoopGetCurrent(), IONotificationPortGetRunLoopSource(notificationPor t), kCFRunLoopCommonModes); 

 

接着添加如下全局方法(在所有类之外添加)

 

 

void powerCallback(void *refCon, io_service_t service, natural_t messageType, void *messageArgument) {

[(YourAppnameApp*)refCon powerMessageReceived: messageType withArgument: messageArgument];

 

在你的程序里添加下面的代码:

 

 

- (void)powerMessageReceived:(natural_t)messageType withArgument:(void *) messageArgument {

switch (messageType) {

case kIOMessageSystemWillSleep:

IOAllowPowerChange(root_port, (long)messageArgument); 

break;

case kIOMessageCanSystemSleep:

//if([self wifiKeepAliveIsSet]) {

IOCancelPowerChange(root_port, (long)messageArgument);

//}

break

case kIOMessageSystemHasPoweredOn:

break;

}

}

 

这样就可以保持iPhone在网络连接的状况下不睡眠了(当然,可能会比较费电 ^_^)。