RLMSyncUserState
enum RLMSyncUserState : NSUInteger {}
The state of the user object.
-
The user is logged out. Call
logInWithCredentials:...with valid credentials to log the user back in.Declaration
Objective-C
RLMSyncUserStateLoggedOutSwift
case loggedOut = 0 -
The user is logged in, and any Realms associated with it are syncing with the Realm Object Server.
Declaration
Objective-C
RLMSyncUserStateActiveSwift
case active = 1 -
The user has encountered a fatal error state, and cannot be used.
Declaration
Objective-C
RLMSyncUserStateErrorSwift
case error = 2
View on GitHub
Install in Dash
RLMSyncUserState Enum Reference