Skip to content

Instantly share code, notes, and snippets.

@janodev
Created August 16, 2016 12:57
Show Gist options
  • Save janodev/8185473bc0868128840ce19ee0901dbc to your computer and use it in GitHub Desktop.
Save janodev/8185473bc0868128840ce19ee0901dbc to your computer and use it in GitHub Desktop.
Register the token
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data)
{
let token = deviceToken.description.components(separatedBy: CharacterSet(charactersIn: "<> ")).joined(separator: ""
dlog(token, .Info)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment