Re: How to remove a view?
Any update on this very old topic? Does the view management on CAknViewAppUi work, considering RemoveView, or should I manage the views myself manually bypassing the CAknViewAppUi view management? At least my experiences with 2.0 SDK looks like that. The documentation on CAknViewAppUi in v2.0 compared to 2nd edition FP2 are identical (no documentation whatsoever on RemoveView).
CAknViewAppUi crashes if I try to remove my view using RemoveView (no panic, everything just shuts down).
Re: How to remove a view?
Hello, i think NavaronSoftware is right...but pay attetion to the params plz.
RegisterViewL ( .... ); // view`s instance
AddToStackL( ...., .... ); // view`s pointer
SetDefaultViewL( .... );// view`s instance
then
RemoveFromStack ( .... );// view`s pointer
DeregisterView ( .... );// view`s instance
delete <the view name here>;