In modern mobile apps, the idea is to support multiple devices; that is assume a user has multiple iOS devices and they can use one ID to carry on using their app.
I've never done user management, user sessions before for iOS; I do recall you can't use the identifier anymore.
I don't want to bother with programming my own sign-in, register and forgot password functionality; and I feel that forcing users to "register" before using the app could end up with them dropping the "cart' and never using the app.
I'm thinking a kind of "guest" system, new users are auto-generated; although I don't know how iOS would know whether its a new user or not if its not using the device identifier any more.
Thus, my question is:
- How do iOS apps handle user management, login and sessions where a user can easily be identified?
Many thanks