📄
IOE SDK
  • Introduction to IOE SDK
  • Change Logs
  • [Android] IOE SDK
    • 1. Install IOE SDK
    • 2. SDK Integration
    • 3. SDK Features
  • [iOS] IOE SDK
    • 1. Install IOE SDK
    • 2. SDK Integration
    • 3. SDK Feature
Powered by GitBook
On this page
  1. [iOS] IOE SDK

2. SDK Integration

Init record SDK

Param
Type
Description

appId

String

Application id

secretKey

String

IOE secret key

        FTechIOEManager.instance().initRecord(appId: "", key: "")

Register callback

After registration, the SDK will return the corresponding status in the callback

Status
Description

initRecord

Call when init success

onStart

Called at start record

onRecording

Called while in process recording

onFail

Called when an error occurs in process recording

onComplete

Called when completed record process and return evaluate result

  • Implement FTechIOEManagerDelegate

    func initRecord(success: Bool) {
    }
    
    func onStart() {
    }
    
    func onRecording() {
    }
    
    func onFailure(error: FSoundError) {
    }
    
    func onCompletionRecord(data: StopRecordIOEResponse) {
    }
Previous1. Install IOE SDKNext3. SDK Feature

Last updated 1 year ago