When the line is exected:
window.rootViewController = self;
The actual RootView Controller recevies a message : viewWillAppear and viewDid appear because it was changed to an ASDepthModal view. ( [self.view addSubview:self.rootViewController.view];)
I think this is not good behaviour. And what about changing the implementation to add the modal view not to the root but as a presenting VC of the current VC or of the current root?
Hello,
When the line is exected: window.rootViewController = self;
The actual RootView Controller recevies a message : viewWillAppear and viewDid appear because it was changed to an ASDepthModal view. ( [self.view addSubview:self.rootViewController.view];)
I think this is not good behaviour. And what about changing the implementation to add the modal view not to the root but as a presenting VC of the current VC or of the current root?