Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@cardoso
Created July 9, 2020 00:18
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/b05d7b1bff8b9c5c068fbda8f173eb3d to your computer and use it in GitHub Desktop.
Save cardoso/b05d7b1bff8b9c5c068fbda8f173eb3d to your computer and use it in GitHub Desktop.
import VoxeetSDK
import VoxeetUXKit
extension ClassViewController {
func startCall() {
let options = VTConferenceOptions()
options.alias = "yoga_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