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
Currently, when a ViewController is created inside of a function. The SuperView will only be able to keep the View inside of the ViewController because of the addSubview( sampleVC->getView). The ViewController will be lost since it becomes out of scope, thus the needed signals inside of the view controller are not getting called.
Issue caused in following scenario:
viewDidLoad
methodviewWillAppear
method in the ViewControllerviewWillAppear
will not get called, but will get called if the view is a member variable within the View ControllerThe text was updated successfully, but these errors were encountered: