Skip to content

Instantly share code, notes, and snippets.

@zontan
Last active September 13, 2019 21:49
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 zontan/898c86d72d85cc88c9ffa0b81a00214f to your computer and use it in GitHub Desktop.
Save zontan/898c86d72d85cc88c9ffa0b81a00214f to your computer and use it in GitHub Desktop.
extension AgoraVideoViewController: AgoraRtcEngineDelegate {
func rtcEngine(_ engine: AgoraRtcEngineKit, didJoinedOfUid uid: UInt, elapsed: Int) {
remoteUserIDs.append(uid)
collectionView.reloadData()
}
func rtcEngine(_ engine: AgoraRtcEngineKit, didOfflineOfUid uid: UInt, reason: AgoraUserOfflineReason) {
if let index = remoteUserIDs.firstIndex(where: { $0 == uid }) {
remoteUserIDs.remove(at: index)
collectionView.reloadData()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment