├── .gitignore ├── LICENSE ├── NHAVEditor.podspec ├── NHAVEditor ├── NHAVEditor.h ├── NHAVEditor.m ├── NHAVEditorProtocol.h ├── NHAddAudioCommand.h ├── NHAddAudioCommand.m ├── NHAddWatermarkCommand.h ├── NHAddWatermarkCommand.m ├── NHGifWriter.h ├── NHGifWriter.m ├── NHMediaCommand.h ├── NHMediaCommand.m ├── NHMediaCommandProtocol.h ├── NHMediaExportCommand.h ├── NHMediaExportCommand.m ├── NHMediaWriter.h ├── NHMediaWriter.m ├── NHPicture.h ├── NHPicture.m └── Unit │ ├── NHAVEditorDefine.h │ ├── NHMediaConfig.h │ ├── NHMediaConfig.m │ ├── NHProxy.h │ ├── NHProxy.m │ ├── NHThread.h │ ├── NHThread.m │ ├── NHTimer.h │ ├── NHTimer.m │ ├── NSData+NH.h │ ├── NSData+NH.m │ ├── NSDate+NH.h │ └── NSDate+NH.m ├── NHAVEditorExamples ├── NHAVEditorExamples.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── NHAVEditorExamples.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── NHAVEditorExamples │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── bofang.imageset │ │ │ ├── Contents.json │ │ │ └── bofang.png │ │ └── zanting.imageset │ │ │ ├── Contents.json │ │ │ └── zanting.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── NHCaptureViewController.h │ ├── NHCaptureViewController.m │ ├── NHDisplayView.h │ ├── NHDisplayView.m │ ├── NHViewController.h │ ├── NHViewController.m │ ├── Resources │ │ ├── logo.png │ │ ├── Бамбинтон-Зая.mp4 │ │ ├── 一生有你-赵海洋.mp3 │ │ └── 黑龙-38度6.mp3 │ ├── Tool │ │ ├── NHCaptureSession.h │ │ ├── NHCaptureSession.m │ │ ├── NHCaptureSessionProtocol.h │ │ ├── NHVideoConfiguration.h │ │ └── NHVideoConfiguration.m │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── NHAVEditor.podspec.json │ ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown │ ├── Manifest.lock │ ├── NHHUDExtend │ ├── LICENSE │ ├── NHHUDExtend │ │ ├── MBProgressHUD+NHAdd.h │ │ ├── MBProgressHUD+NHAdd.m │ │ └── MBProgressHUD_NHExtend.h │ └── README.md │ ├── PermissionScope │ ├── LICENSE │ ├── PermissionScope │ │ ├── Constants.swift │ │ ├── Extensions.swift │ │ ├── PermissionScope.swift │ │ ├── Permissions.swift │ │ └── Structs.swift │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── MBProgressHUD │ ├── MBProgressHUD-Info.plist │ ├── MBProgressHUD-dummy.m │ ├── MBProgressHUD-prefix.pch │ ├── MBProgressHUD-umbrella.h │ ├── MBProgressHUD.modulemap │ └── MBProgressHUD.xcconfig │ ├── NHAVEditor │ ├── NHAVEditor-Info.plist │ ├── NHAVEditor-dummy.m │ ├── NHAVEditor-prefix.pch │ ├── NHAVEditor-umbrella.h │ ├── NHAVEditor.modulemap │ └── NHAVEditor.xcconfig │ ├── NHHUDExtend │ ├── NHHUDExtend-Info.plist │ ├── NHHUDExtend-dummy.m │ ├── NHHUDExtend-prefix.pch │ ├── NHHUDExtend-umbrella.h │ ├── NHHUDExtend.modulemap │ └── NHHUDExtend.xcconfig │ └── Pods-NHAVEditorExamples │ ├── Pods-NHAVEditorExamples-Info.plist │ ├── Pods-NHAVEditorExamples-acknowledgements.markdown │ ├── Pods-NHAVEditorExamples-acknowledgements.plist │ ├── Pods-NHAVEditorExamples-dummy.m │ ├── Pods-NHAVEditorExamples-frameworks-Debug-input-files.xcfilelist │ ├── Pods-NHAVEditorExamples-frameworks-Debug-output-files.xcfilelist │ ├── Pods-NHAVEditorExamples-frameworks-Release-input-files.xcfilelist │ ├── Pods-NHAVEditorExamples-frameworks-Release-output-files.xcfilelist │ ├── Pods-NHAVEditorExamples-frameworks.sh │ ├── Pods-NHAVEditorExamples-umbrella.h │ ├── Pods-NHAVEditorExamples.debug.xcconfig │ ├── Pods-NHAVEditorExamples.modulemap │ └── Pods-NHAVEditorExamples.release.xcconfig ├── README.md └── preview.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /NHAVEditor.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor.podspec -------------------------------------------------------------------------------- /NHAVEditor/NHAVEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHAVEditor.h -------------------------------------------------------------------------------- /NHAVEditor/NHAVEditor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHAVEditor.m -------------------------------------------------------------------------------- /NHAVEditor/NHAVEditorProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHAVEditorProtocol.h -------------------------------------------------------------------------------- /NHAVEditor/NHAddAudioCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHAddAudioCommand.h -------------------------------------------------------------------------------- /NHAVEditor/NHAddAudioCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHAddAudioCommand.m -------------------------------------------------------------------------------- /NHAVEditor/NHAddWatermarkCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHAddWatermarkCommand.h -------------------------------------------------------------------------------- /NHAVEditor/NHAddWatermarkCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHAddWatermarkCommand.m -------------------------------------------------------------------------------- /NHAVEditor/NHGifWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHGifWriter.h -------------------------------------------------------------------------------- /NHAVEditor/NHGifWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHGifWriter.m -------------------------------------------------------------------------------- /NHAVEditor/NHMediaCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHMediaCommand.h -------------------------------------------------------------------------------- /NHAVEditor/NHMediaCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHMediaCommand.m -------------------------------------------------------------------------------- /NHAVEditor/NHMediaCommandProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHMediaCommandProtocol.h -------------------------------------------------------------------------------- /NHAVEditor/NHMediaExportCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHMediaExportCommand.h -------------------------------------------------------------------------------- /NHAVEditor/NHMediaExportCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHMediaExportCommand.m -------------------------------------------------------------------------------- /NHAVEditor/NHMediaWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHMediaWriter.h -------------------------------------------------------------------------------- /NHAVEditor/NHMediaWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHMediaWriter.m -------------------------------------------------------------------------------- /NHAVEditor/NHPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHPicture.h -------------------------------------------------------------------------------- /NHAVEditor/NHPicture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/NHPicture.m -------------------------------------------------------------------------------- /NHAVEditor/Unit/NHAVEditorDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NHAVEditorDefine.h -------------------------------------------------------------------------------- /NHAVEditor/Unit/NHMediaConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NHMediaConfig.h -------------------------------------------------------------------------------- /NHAVEditor/Unit/NHMediaConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NHMediaConfig.m -------------------------------------------------------------------------------- /NHAVEditor/Unit/NHProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NHProxy.h -------------------------------------------------------------------------------- /NHAVEditor/Unit/NHProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NHProxy.m -------------------------------------------------------------------------------- /NHAVEditor/Unit/NHThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NHThread.h -------------------------------------------------------------------------------- /NHAVEditor/Unit/NHThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NHThread.m -------------------------------------------------------------------------------- /NHAVEditor/Unit/NHTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NHTimer.h -------------------------------------------------------------------------------- /NHAVEditor/Unit/NHTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NHTimer.m -------------------------------------------------------------------------------- /NHAVEditor/Unit/NSData+NH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NSData+NH.h -------------------------------------------------------------------------------- /NHAVEditor/Unit/NSData+NH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NSData+NH.m -------------------------------------------------------------------------------- /NHAVEditor/Unit/NSDate+NH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NSDate+NH.h -------------------------------------------------------------------------------- /NHAVEditor/Unit/NSDate+NH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditor/Unit/NSDate+NH.m -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/AppDelegate.h -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/AppDelegate.m -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/bofang.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/bofang.imageset/Contents.json -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/bofang.imageset/bofang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/bofang.imageset/bofang.png -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/zanting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/zanting.imageset/Contents.json -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/zanting.imageset/zanting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Assets.xcassets/zanting.imageset/zanting.png -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Info.plist -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/NHCaptureViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/NHCaptureViewController.h -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/NHCaptureViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/NHCaptureViewController.m -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/NHDisplayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/NHDisplayView.h -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/NHDisplayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/NHDisplayView.m -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/NHViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/NHViewController.h -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/NHViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/NHViewController.m -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Resources/logo.png -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Resources/Бамбинтон-Зая.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Resources/Бамбинтон-Зая.mp4 -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Resources/一生有你-赵海洋.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Resources/一生有你-赵海洋.mp3 -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Resources/黑龙-38度6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Resources/黑龙-38度6.mp3 -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Tool/NHCaptureSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Tool/NHCaptureSession.h -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Tool/NHCaptureSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Tool/NHCaptureSession.m -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Tool/NHCaptureSessionProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Tool/NHCaptureSessionProtocol.h -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Tool/NHVideoConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Tool/NHVideoConfiguration.h -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/Tool/NHVideoConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/Tool/NHVideoConfiguration.m -------------------------------------------------------------------------------- /NHAVEditorExamples/NHAVEditorExamples/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/NHAVEditorExamples/main.m -------------------------------------------------------------------------------- /NHAVEditorExamples/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Podfile -------------------------------------------------------------------------------- /NHAVEditorExamples/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Podfile.lock -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Local Podspecs/NHAVEditor.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Local Podspecs/NHAVEditor.podspec.json -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Manifest.lock -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/NHHUDExtend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/NHHUDExtend/LICENSE -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/NHHUDExtend/NHHUDExtend/MBProgressHUD+NHAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/NHHUDExtend/NHHUDExtend/MBProgressHUD+NHAdd.h -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/NHHUDExtend/NHHUDExtend/MBProgressHUD+NHAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/NHHUDExtend/NHHUDExtend/MBProgressHUD+NHAdd.m -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/NHHUDExtend/NHHUDExtend/MBProgressHUD_NHExtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/NHHUDExtend/NHHUDExtend/MBProgressHUD_NHExtend.h -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/NHHUDExtend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/NHHUDExtend/README.md -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/PermissionScope/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/PermissionScope/LICENSE -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/PermissionScope/PermissionScope/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/PermissionScope/PermissionScope/Constants.swift -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/PermissionScope/PermissionScope/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/PermissionScope/PermissionScope/Extensions.swift -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/PermissionScope/PermissionScope/PermissionScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/PermissionScope/PermissionScope/PermissionScope.swift -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/PermissionScope/PermissionScope/Permissions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/PermissionScope/PermissionScope/Permissions.swift -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/PermissionScope/PermissionScope/Structs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/PermissionScope/PermissionScope/Structs.swift -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/PermissionScope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/PermissionScope/README.md -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-Info.plist -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-umbrella.h -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.modulemap -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor-Info.plist -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor-dummy.m -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor-prefix.pch -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor-umbrella.h -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor.modulemap -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHAVEditor/NHAVEditor.xcconfig -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend-Info.plist -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend-dummy.m -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend-prefix.pch -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend-umbrella.h -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend.modulemap -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/NHHUDExtend/NHHUDExtend.xcconfig -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-Info.plist -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-acknowledgements.markdown -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-acknowledgements.plist -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-dummy.m -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-frameworks.sh -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples-umbrella.h -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples.debug.xcconfig -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples.modulemap -------------------------------------------------------------------------------- /NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/NHAVEditorExamples/Pods/Target Support Files/Pods-NHAVEditorExamples/Pods-NHAVEditorExamples.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/README.md -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nenhall/NHAVEditor/HEAD/preview.gif --------------------------------------------------------------------------------