Event for "re-initialized" view (after nav.remove())

I have view A which leads to view B. After some changes are made in view B i use this.nav.remove() to go back. Now i’d like to do something in view afterwards.
But all lifecycle elements like ionViewLoaded, ionViewWillEnter, ionViewDidEnter will only get called once.

Any thoughts?

You don’t need to call nav.remove.

When can call pop, which will handle the animation and cleaning up of the view.
This is probably why the view is only firing those events once.