mirror of
https://github.com/status-im/react-native-camera-kit.git
synced 2025-02-28 15:40:47 +00:00
14 lines
445 B
Swift
14 lines
445 B
Swift
//
|
|
// CameraViewControllerDelegate.swift
|
|
// ReactNativeCameraKit
|
|
//
|
|
// Created by Natalia Grankina on 4/13/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
protocol CameraViewControllerDelegate : NSObjectProtocol {
|
|
func imageHasBeenTaken(controller: CameraViewController, imageData: String)
|
|
func cameraViewControllerDidCancel(controller: CameraViewController)
|
|
func onError(controller: CameraViewController, error: String)
|
|
}
|