在点击通知进入的页面的
//UIApplicationWillResignActiveNotification是app即将进入后台的方法
//增加监听使它在进入后台之前pop上一个页面
- (void)viewDidLoad{
//增加监听
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(viewcontrollerGoBack)
name:UIApplicationWillResignActiveNotification
object:nil];
//别忘了删除监听
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
- (void)viewcontrollerGoBack{
[self.navigationController popViewControllerAnimated:NO];
}