Is it possible to broadcast a local Push Notification in one class of the app and receive and handle it in another class in iOS like android does with Intents and Broadcast-receiver?!
And i don´t want to let the User know. The Basic principal of that what i want is to broadcast a "job". Another class should receive all Broadcast and handle those...
In my AppDelegate I already have this method:
-(void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification {
}
Is there any way to do this in iOS 7?!