I need to unsubscribe something, as a lot of documentation said, it best to do it in ionWillLeave. but the event doesn’t triggered.
ionWillLeave
I tried using navController.navigteRoot like suggested here but it also doesn’t fire the ionWillLeave.
navController.navigteRoot
any suggestion what am I should do ?
Thankyou!
Why do you feel the need to do this unsubscribing? If it’s to avoid leaking memory, which is the most typical reason, then I would do it in ngOnDestroy and not fret if that isn’t called when you think it might be.
ngOnDestroy
ah yes, i forgot about ngOnDestroy will be called if we do navController.navigateRoot , thank You!
navController.navigateRoot