iOS
Last updated
target 'MyApp' do
pod 'Remon-iOS-SDK', '~> 2.0'
endremonCall.connetChannel("channelID")let caster = RemonCast()
caster.serviceId = "YourServiceID"
caster.serviceKey = "YourServiceKey"
caster.broadcast = true
caster.localView = localView
caster.createRoom()let viewer = RemonCast()
viewer.remoteView = remoteView
let config = RemonConfig()
config.serviceId = "YourServiceID"
config.key = "YourServiceKey"
config.channelType = "VIEWER"
caster.joinRoom(config)