yayan пре 1 година
родитељ
комит
a5620ea210
1 измењених фајлова са 1 додато и 77 уклоњено
  1. 1 77
      NexilisSampleCodeReact-Android/ios/CallNative.swift

+ 1 - 77
NexilisSampleCodeReact-Android/ios/CallNative.swift

@@ -9,82 +9,6 @@ import Foundation
 import NexilisLite
 
 @objc(CallNative)
-class CallNative: NSObject, ConnectDelegate {
-  func onSuccess(userId: String) {
-    
-  }
+class CallNative: NSObject {
   
-  func onFailed(error: String) {
-    
-  }
-  
-  @objc func connect() {
-    APIS.connect(apiKey: "1C4FA430BC9F44484AFBE99C8974D70B68CE7891DBE83505CBF01205DE51FC18", delegate: self) //***REPLACE WITH YOUR API KEY***
-  }
-  
-  @objc func openContactCenter() {
-    DispatchQueue.main.async {
-      APIS.openContactCenter()
-    }
-  }
-  @objc func openChat() {
-    DispatchQueue.main.async {
-      APIS.openChat()
-    }
-  }
-  @objc func openCall() {
-    DispatchQueue.main.async {
-      APIS.openCall()
-    }
-  }
-  @objc func openStreaming() {
-    DispatchQueue.main.async {
-      APIS.openStreaming()
-    }
-  }
-  @objc func openSetting() {
-    DispatchQueue.main.async {
-      APIS.openSetting()
-    }
-  }
-  @objc func openWhiteboard() {
-    DispatchQueue.main.async {
-      APIS.openWhiteboard()
-    }
-  }
-  @objc func openScreenSharing() {
-    DispatchQueue.main.async {
-      APIS.openScreenSharing()
-    }
-  }
-  @objc(openContactCenterChat:)
-  func openContactCenterChat(category: Int) {
-    print("category \(category)")
-    DispatchQueue.main.async {
-      APIS.openContactCenter(media: 0, category: category)
-    }
-  }
-  @objc(openContactCenterAudioCall:)
-  func openContactCenterAudioCall(category: Int) {
-    DispatchQueue.main.async {
-      APIS.openContactCenter(media: 1, category: category)
-    }
-  }
-  @objc(openContactCenterVideoCall:)
-  func openContactCenterVideoCall(category: Int) {
-    DispatchQueue.main.async {
-      APIS.openContactCenter(media: 2, category: category)
-    }
-  }
-  @objc(signInAdmin:)
-  func signInAdmin(pwd: String) {
-    DispatchQueue.main.async {
-      APIS.signInAdmin(password: pwd)
-    }
-  }
-  @objc func openSetOfficer() {
-    DispatchQueue.main.async {
-      APIS.openSetAsOfficerForm()
-    }
-  }
 }