Skip to content

Instantly share code, notes, and snippets.

@doluvor
Created October 1, 2016 13:50
Show Gist options
  • Save doluvor/c2db8b60e6ca92353db109ce8f8280d9 to your computer and use it in GitHub Desktop.
Save doluvor/c2db8b60e6ca92353db109ce8f8280d9 to your computer and use it in GitHub Desktop.
Set default Realm for user
func setDefaultRealmForUser(username: String) {
var config = Realm.Configuration()
config.fileURL = config.fileURL!.deletingLastPathComponent().appendingPathComponent("\(username).realm")
Realm.Configuration.defaultConfiguration = config
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment