//便历导航栏内的所有控制
for(UIViewController *controller in self.navigationController.viewControllers) {
//判断是不是你想要pop的控制器
if([controller isKindOfClass:[OverWorkRecevice class]]){
//获取到控制器
OverWorkRecevice *owr = (OverWorkRecevice *)controller;
//pop回控制器
[self.navigationController popToViewController:owr animated:YES];
}
}