跳转回首页

跳转回首页

-(void)gotoResultControllerWithUrl:(NSString *)url 
    activityTitle:(NSString *)title{
    // 页面A
    TenderResultViewController *vc= [[TenderResultViewController alloc] init];    
    vc.url = url;
    vc.activityTitle = title;    
    [self.navigationController pushViewController:vc animated:YES];
    
}

-(void)toHomeViewController {
    // 首页
    self.tabBarController.selectedIndex = 0;
    [self.navigationController popToRootViewControllerAnimated:YES];
    [self dismissViewControllerAnimated:YES completion:nil];
}

你可能感兴趣的:(跳转回首页)