You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The NamasteController code pushes a ProgressBar in several locations, but the delegate that is provided is a reference to self. In this case self does not extend BehaviorDelegate and does not implement onBack, so I expect bad behavior. If you press back while the ProgressBar is visible, you will see that the application crashes with a 'Symbol Not Found Exception'.
I believe the simplest solution is to pass a reference to a delegate that handles onBack by calling System.exit() or NamasteController.onExit().
The text was updated successfully, but these errors were encountered:
The NamasteController code pushes a ProgressBar in several locations, but the delegate that is provided is a reference to self. In this case
self
does not extendBehaviorDelegate
and does not implementonBack
, so I expect bad behavior. If you press back while the ProgressBar is visible, you will see that the application crashes with a 'Symbol Not Found Exception'.I believe the simplest solution is to pass a reference to a delegate that handles
onBack
by callingSystem.exit()
orNamasteController.onExit()
.The text was updated successfully, but these errors were encountered: