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
We have a UITabBarController in our app. Each tab is a UINavigationController. From one of these navigation controllers, we present the MainViewController as opposed to pushing it in order to avoid two rows of bottom tabs (one for our tab bar, and another one for the PulseUI tab bar).
Everything works fine about this approach until we try to tap the "Browse Files" button in the "Settings" tab. When we tap this button, we get the following error.
[Presentation] Attempt to present <PulseUI.DocumentBrowserViewController: 0x7fd62f58a6f0> on <UIViewController: 0x7fd62f50e650> (from <UIViewController: 0x7fd62f50e650>) which is already presenting <PulseUI.MainViewController: 0x7fd62812fa00>.
Seems to me that the MainViewController is trying to present from the presentingViewController instead of just presenting from itself. Because the presented view can present another view on top of itself, I think a possible solution for this would be to just have the instance of MainViewController present the file browser.
The text was updated successfully, but these errors were encountered:
We have a
UITabBarController
in our app. Each tab is aUINavigationController
. From one of these navigation controllers, wepresent
theMainViewController
as opposed topush
ing it in order to avoid two rows of bottom tabs (one for our tab bar, and another one for the PulseUI tab bar).Everything works fine about this approach until we try to tap the "Browse Files" button in the "Settings" tab. When we tap this button, we get the following error.
Seems to me that the
MainViewController
is trying topresent
from thepresentingViewController
instead of just presenting from itself. Because the presented view can present another view on top of itself, I think a possible solution for this would be to just have the instance ofMainViewController
present the file browser.The text was updated successfully, but these errors were encountered: