Skip to content

Instantly share code, notes, and snippets.

@shantaramk
Created August 14, 2020 10:48
Show Gist options
  • Save shantaramk/a5f589a1dad6afc83d02ec43e398f773 to your computer and use it in GitHub Desktop.
Save shantaramk/a5f589a1dad6afc83d02ec43e398f773 to your computer and use it in GitHub Desktop.
You can share between apps in the same AppGroup.
// save the message in the app A side
let message = "iSkyNet"
AppGroupsManager.saveMessage(message, key: "name")
// call the message at the application B side
if let savedMessage = AppGroupsManager.loadMessage(key: "samplekey") {
print(savedMessage)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment