Build a Sample App with NCKit
Use this guide to create a new iOS app or integrate NCKit into an existing project.
Reference projectโ
| Item | Value |
|---|---|
| Repository | github.com/5Exceptions-Mobile-Team/NCKit_Demo |
| Xcode project | NCKitSample.xcodeproj |
| Scheme | NCKitSample |
| NCKit version | 1.1.1 (SPM) |
git clone https://github.com/5Exceptions-Mobile-Team/NCKit_Demo.git
cd NCKit_Demo/KrispyiOS
open NCKitSample.xcodeproj
The sample demonstrates microphone NC, video/file denoise, and in-app API snippets.
Verify importโ
import NCKit
Public API checklistโ
let modelURL = try NCKitModelLocator.modelTarGzURL()
let processor = try NCKitProcessor(modelURL: modelURL)
try NCKitFileProcessor.processFile(inputURL: in, outputURL: out, processor: processor)
Run on arm64 device or Apple Silicon simulator.