Question
Convert View to viewClass:Class
Hi.
Because popView () does not work correctly in iOS, I decided to write my own class. Unfortunately, I do not know how to convert:
var MyView: View = navigator.activeView;and in the next view:
navigator.pushView (MyView) there is a conflict because it must be a parameter: viewClass: ClassThis solution works:
navigator.pushView (views.myOtherView);
but it is not the active view.
Please help.
