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
Sometimes when I run the app, this runtime-warning happens, and I don't know why.
I searched on the issue list and it seems no one has the same issue.
Please help to check this. Thanks.
The code of the Router is something like this
enum MainScreen {
case pop
case accountView
}
class MainRouter: UIViewControllerCoordinator<MainScreen> {
override func transition(for route: MainScreen) -> ViewTransition {
switch route {
case .pop:
return .dismiss
case .accountView:
return .push(AccountViewFactory(checkedUser: true))
}
}
}
The text was updated successfully, but these errors were encountered:
Sometimes when I run the app, this runtime-warning happens, and I don't know why.
I searched on the issue list and it seems no one has the same issue.
Please help to check this. Thanks.
The code of the Router is something like this
The text was updated successfully, but these errors were encountered: