How to change Tabs Page Dinamically

export class TabsPage {

  tabHome: any = HomePage;
  tabIngressos: any = IngressosPage;
  tabBusca: any = BuscaPage;
  tabPerfil: any = LoginFacebookPage;

}

i wish i could change tabPerfil from another class. but how?!

I just solved my proble using navCtrl.setRoot(MyPage);