I'm developing a very simple iOS app. For a signed-in user, it would display a tab-view with two tabs: Foo and Bar.
The problem is, where do I add user sign-in page?
- Add as a root view to main storyboard. Whenever user logged out, start over from root view
- Add as a separated view to be modal-ed by Foo tab. I feel this approach a bit weird since it differentiate one tab from another.
- Any other approach you may suggest.
Thanks for your help!