- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
- (void)checkLaunchOptions:(NSDictionary*)options
{
if (!becomeActiveFirst || !options) {
return;
}
UILocalNotification* local = [options objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
[self.navigationControllerpopToRootViewControllerAnimated:NO];
if (local) {
[selfpushLocalNotificaton:local];
return;
}
}