I used the NSNotificationcenter
to implement an event listener on a change in connectivity. When the user connects or disconnects from a WiFi network. Is it possible for this notification to be sent to the app while the app is in suspended mode?
It must be possible to do this, thinking about Skype for example how do it receive an incoming Skype call?
This is how I add my observer
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(reachabilityChanged:)
name:kReachabilityChangedNotification
object:nil];