0

当设备连接到 wi-fi 或移动数据网络时,我有没有办法自动发布通知?

我在想,当连接发生时,在我的应用程序委托中使用它:

[[NSNotificationCenter defaultCenter]
 postNotificationName:@"connectedToNetwork"
 object:nil];

并在我的课堂上捕捉到这个通知:

[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(doSomething)
                                             name:@"connectedToNetwork"
                                           object:nil];

我正在使用 Reachability 查看设备是否已连接到 Internet,但这不是我想要的。我希望在设备连接到 wi-fi 或移动网络时自动调用一些通知。我不在乎是否可以通过该网络访问互联网,我只需要在连接发生时得到通知。

4

1 回答 1

0
// allocate a reachability object
Reachability* reach = [Reachability reachabilityWithHostname:@"www.google.com"];

// tell the reachability that we DONT want to be reachable on 3G/EDGE/CDMA
reach.reachableOnWWAN = NO;

// here we set up a NSNotification observer. The Reachability that caused the notification
// is passed in the object parameter
[[NSNotificationCenter defaultCenter] addObserver:self 
                                         selector:@selector(reachabilityChanged:) 
                                             name:kReachabilityChangedNotification 
                                           object:nil];

[reach startNotifier]
于 2013-03-01T17:49:59.633 回答