├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── GNCam.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── GNCam-Example.xcscheme ├── GNCam.xcworkspace │ └── contents.xcworkspacedata ├── GNCam │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── GNCam.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── GNCam │ │ ├── GNCam-dummy.m │ │ ├── GNCam-prefix.pch │ │ ├── GNCam-umbrella.h │ │ ├── GNCam.modulemap │ │ ├── GNCam.xcconfig │ │ └── Info.plist │ │ ├── Pods-GNCam_Example │ │ ├── Info.plist │ │ ├── Pods-GNCam_Example-acknowledgements.markdown │ │ ├── Pods-GNCam_Example-acknowledgements.plist │ │ ├── Pods-GNCam_Example-dummy.m │ │ ├── Pods-GNCam_Example-frameworks.sh │ │ ├── Pods-GNCam_Example-resources.sh │ │ ├── Pods-GNCam_Example-umbrella.h │ │ ├── Pods-GNCam_Example.debug.xcconfig │ │ ├── Pods-GNCam_Example.modulemap │ │ └── Pods-GNCam_Example.release.xcconfig │ │ └── Pods-GNCam_Tests │ │ ├── Info.plist │ │ ├── Pods-GNCam_Tests-acknowledgements.markdown │ │ ├── Pods-GNCam_Tests-acknowledgements.plist │ │ ├── Pods-GNCam_Tests-dummy.m │ │ ├── Pods-GNCam_Tests-frameworks.sh │ │ ├── Pods-GNCam_Tests-resources.sh │ │ ├── Pods-GNCam_Tests-umbrella.h │ │ ├── Pods-GNCam_Tests.debug.xcconfig │ │ ├── Pods-GNCam_Tests.modulemap │ │ └── Pods-GNCam_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── GNCam Icon.png ├── GNCam.podspec ├── GNCam ├── Assets │ └── Assets.xcassets │ │ ├── Contents.json │ │ ├── close.imageset │ │ ├── Contents.json │ │ ├── ic_close_white_36pt.png │ │ ├── ic_close_white_36pt_2x.png │ │ └── ic_close_white_36pt_3x.png │ │ ├── flashOff.imageset │ │ ├── Contents.json │ │ ├── ic_flash_off_white_36pt.png │ │ ├── ic_flash_off_white_36pt_2x.png │ │ └── ic_flash_off_white_36pt_3x.png │ │ ├── flashOn.imageset │ │ ├── Contents.json │ │ ├── ic_flash_on_white_36pt.png │ │ ├── ic_flash_on_white_36pt_2x.png │ │ └── ic_flash_on_white_36pt_3x.png │ │ └── switchCamera.imageset │ │ ├── Contents.json │ │ ├── ic_switch_camera_white_36pt.png │ │ ├── ic_switch_camera_white_36pt_2x.png │ │ └── ic_switch_camera_white_36pt_3x.png └── Source │ ├── .gitkeep │ ├── CaptureManager.swift │ ├── CapturePreviewView.swift │ ├── CaptureViewController.swift │ └── FocusIndicatorView.swift ├── LICENSE ├── README.md ├── _Pods.xcodeproj └── docs ├── Classes.html ├── Classes ├── CaptureManager.html ├── CapturePreviewView.html ├── CaptureViewController.html └── FocusIndicatorView.html ├── Enums.html ├── Enums ├── CaptureManagerError.html ├── CaptureSessionInput.html ├── CaptureSessionOutput.html ├── PopDirection.html └── StillImageError.html ├── Protocols.html ├── Protocols ├── CaptureViewControllerDelegate.html ├── VideoDataOutputDelegate.html └── VideoPreviewLayerProvider.html ├── css ├── highlight.css └── jazzy.css ├── docsets ├── .docset │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── Documents │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── CaptureManager.html │ │ │ ├── CapturePreviewView.html │ │ │ ├── CaptureViewController.html │ │ │ └── FocusIndicatorView.html │ │ ├── Enums.html │ │ ├── Enums │ │ │ ├── CaptureManagerError.html │ │ │ ├── CaptureSessionInput.html │ │ │ ├── CaptureSessionOutput.html │ │ │ ├── PopDirection.html │ │ │ └── StillImageError.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ ├── CaptureViewControllerDelegate.html │ │ │ ├── VideoDataOutputDelegate.html │ │ │ └── VideoPreviewLayerProvider.html │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ └── gh.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ └── jquery.min.js │ │ └── undocumented.json │ │ └── docSet.dsidx └── .tgz ├── img ├── carat.png ├── dash.png └── gh.png ├── index.html ├── js ├── jazzy.js └── jquery.min.js └── undocumented.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/GNCam.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/GNCam.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/GNCam.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/GNCam.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/GNCam.xcodeproj/xcshareddata/xcschemes/GNCam-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/GNCam.xcodeproj/xcshareddata/xcschemes/GNCam-Example.xcscheme -------------------------------------------------------------------------------- /Example/GNCam.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/GNCam.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/GNCam/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/GNCam/AppDelegate.swift -------------------------------------------------------------------------------- /Example/GNCam/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/GNCam/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/GNCam/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/GNCam/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/GNCam/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/GNCam/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/GNCam/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/GNCam/Info.plist -------------------------------------------------------------------------------- /Example/GNCam/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/GNCam/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/GNCam.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Local Podspecs/GNCam.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GNCam/GNCam-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/GNCam/GNCam-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GNCam/GNCam-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/GNCam/GNCam-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GNCam/GNCam-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/GNCam/GNCam-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GNCam/GNCam.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/GNCam/GNCam.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GNCam/GNCam.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/GNCam/GNCam.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GNCam/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/GNCam/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Example/Pods-GNCam_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Pods/Target Support Files/Pods-GNCam_Tests/Pods-GNCam_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /GNCam Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam Icon.png -------------------------------------------------------------------------------- /GNCam.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam.podspec -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/close.imageset/ic_close_white_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/close.imageset/ic_close_white_36pt.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/close.imageset/ic_close_white_36pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/close.imageset/ic_close_white_36pt_2x.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/close.imageset/ic_close_white_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/close.imageset/ic_close_white_36pt_3x.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/flashOff.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/flashOff.imageset/Contents.json -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/flashOff.imageset/ic_flash_off_white_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/flashOff.imageset/ic_flash_off_white_36pt.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/flashOff.imageset/ic_flash_off_white_36pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/flashOff.imageset/ic_flash_off_white_36pt_2x.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/flashOff.imageset/ic_flash_off_white_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/flashOff.imageset/ic_flash_off_white_36pt_3x.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/flashOn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/flashOn.imageset/Contents.json -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/flashOn.imageset/ic_flash_on_white_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/flashOn.imageset/ic_flash_on_white_36pt.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/flashOn.imageset/ic_flash_on_white_36pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/flashOn.imageset/ic_flash_on_white_36pt_2x.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/flashOn.imageset/ic_flash_on_white_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/flashOn.imageset/ic_flash_on_white_36pt_3x.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/switchCamera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/switchCamera.imageset/Contents.json -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/switchCamera.imageset/ic_switch_camera_white_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/switchCamera.imageset/ic_switch_camera_white_36pt.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/switchCamera.imageset/ic_switch_camera_white_36pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/switchCamera.imageset/ic_switch_camera_white_36pt_2x.png -------------------------------------------------------------------------------- /GNCam/Assets/Assets.xcassets/switchCamera.imageset/ic_switch_camera_white_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Assets/Assets.xcassets/switchCamera.imageset/ic_switch_camera_white_36pt_3x.png -------------------------------------------------------------------------------- /GNCam/Source/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GNCam/Source/CaptureManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Source/CaptureManager.swift -------------------------------------------------------------------------------- /GNCam/Source/CapturePreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Source/CapturePreviewView.swift -------------------------------------------------------------------------------- /GNCam/Source/CaptureViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Source/CaptureViewController.swift -------------------------------------------------------------------------------- /GNCam/Source/FocusIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/GNCam/Source/FocusIndicatorView.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/CaptureManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Classes/CaptureManager.html -------------------------------------------------------------------------------- /docs/Classes/CapturePreviewView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Classes/CapturePreviewView.html -------------------------------------------------------------------------------- /docs/Classes/CaptureViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Classes/CaptureViewController.html -------------------------------------------------------------------------------- /docs/Classes/FocusIndicatorView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Classes/FocusIndicatorView.html -------------------------------------------------------------------------------- /docs/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Enums.html -------------------------------------------------------------------------------- /docs/Enums/CaptureManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Enums/CaptureManagerError.html -------------------------------------------------------------------------------- /docs/Enums/CaptureSessionInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Enums/CaptureSessionInput.html -------------------------------------------------------------------------------- /docs/Enums/CaptureSessionOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Enums/CaptureSessionOutput.html -------------------------------------------------------------------------------- /docs/Enums/PopDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Enums/PopDirection.html -------------------------------------------------------------------------------- /docs/Enums/StillImageError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Enums/StillImageError.html -------------------------------------------------------------------------------- /docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Protocols.html -------------------------------------------------------------------------------- /docs/Protocols/CaptureViewControllerDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Protocols/CaptureViewControllerDelegate.html -------------------------------------------------------------------------------- /docs/Protocols/VideoDataOutputDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Protocols/VideoDataOutputDelegate.html -------------------------------------------------------------------------------- /docs/Protocols/VideoPreviewLayerProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/Protocols/VideoPreviewLayerProvider.html -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/CaptureManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/CaptureManager.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/CapturePreviewView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/CapturePreviewView.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/CaptureViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/CaptureViewController.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/FocusIndicatorView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/FocusIndicatorView.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Enums.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Enums/CaptureManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Enums/CaptureManagerError.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Enums/CaptureSessionInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Enums/CaptureSessionInput.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Enums/CaptureSessionOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Enums/CaptureSessionOutput.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Enums/PopDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Enums/PopDirection.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Enums/StillImageError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Enums/StillImageError.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Protocols/CaptureViewControllerDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Protocols/CaptureViewControllerDelegate.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Protocols/VideoDataOutputDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Protocols/VideoDataOutputDelegate.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Protocols/VideoPreviewLayerProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Protocols/VideoPreviewLayerProvider.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/Documents/undocumented.json -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/docsets/.tgz -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalonunez/GNCam/HEAD/docs/undocumented.json --------------------------------------------------------------------------------