Skip to content

Instantly share code, notes, and snippets.

@cardoso
Last active July 6, 2020 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cardoso/d82fb13048945b5b6fbe8dd506755df6 to your computer and use it in GitHub Desktop.
Save cardoso/d82fb13048945b5b6fbe8dd506755df6 to your computer and use it in GitHub Desktop.
import VoxeetSDK
import VoxeetUXKit
extension ClassViewController {
func startCall() {
let options = VTConferenceOptions()
options.alias = "history_class_id"
VoxeetSDK.shared.conference.create(options: options, success: { conf in
VoxeetSDK.shared.conference.join(conference: conf)
}, fail: { error in
print(error)
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment