//跳转到指定的控制器
for (UIViewController *Vc in self.navigationController.viewControllers) {
if ([Vc isKindOfClass:[WJPersonCenterViewController class]]) {
[self.navigationController popToViewController:Vc animated:YES];
}
}