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, the LoadingActivity view seems to be added as a subview of the topViewController. This means that I cannot show the loading activity, and keep it showing while I perform a segue that goes to another VC.
I think adding the loading activity as a subview of the window should fix this, but this would not work if the view controller is not full screen (see #23). Therefore, I think it would be best to provide an option to add the loading activity to the window.
Either:
Accept a UIViewController? parameter in show. When this is nil, show the loading activity in the window, otherwise show it as a subview of the view of the VC, or
Accept a Bool parameter called showAsSubviewOfWindow. This won't break existing code.
Do you think this is a good idea?
The text was updated successfully, but these errors were encountered:
Currently, the
LoadingActivity
view seems to be added as a subview of thetopViewController
. This means that I cannot show the loading activity, and keep it showing while I perform a segue that goes to another VC.I think adding the loading activity as a subview of the window should fix this, but this would not work if the view controller is not full screen (see #23). Therefore, I think it would be best to provide an option to add the loading activity to the window.
Either:
UIViewController?
parameter inshow
. When this is nil, show the loading activity in the window, otherwise show it as a subview of the view of the VC, orBool
parameter calledshowAsSubviewOfWindow
. This won't break existing code.Do you think this is a good idea?
The text was updated successfully, but these errors were encountered: