I have an app (XCode 8 + Swift 3), used by teacher and student. User need to login first. For teacher, after login, we show different content than student login. Login view is the same for both teacher and student.
My questions are:
Should I create two apps, one for teacher one for student or should I only create one app but dynamically show different view for different user group?
If the answer is only make one app, what is the best practice to do concerning show different view for different user type after login? Is there a good tutorial on this?
===== NOTE ====
I know I could use either way, so, the answer I am expecting is which one is better for my needs, not I could do one app, I could do two apps, I know that. If there is no one way better than the other, it is also nice to voice up. Thanks.