Skip to content

Instantly share code, notes, and snippets.

@redfearnk
Created October 19, 2015 15:19
Show Gist options
  • Save redfearnk/26a0d553dd8031649a77 to your computer and use it in GitHub Desktop.
Save redfearnk/26a0d553dd8031649a77 to your computer and use it in GitHub Desktop.
PubNub client setup
let config = PNConfiguration(publishKey: self.publishKey, subscribeKey: self.subscribeKey)
config.origin = "pubsub.pubnub.com"
self.pubNubClient = PubNub.clientWithConfiguration(config)
self.pubNubClient?.addListener(self)
self.pubNubClient?.subscribeToChannels([channel], withPresence: true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment