├── .gitignore ├── Podfile ├── Podfile.lock ├── README.md ├── iOSDC19-Example.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── beta.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── beta.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── iOSDC19-Example.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── beta.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ ├── WorkspaceSettings.xcsettings │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist └── iOSDC19-Example ├── .DS_Store ├── ARKitViewController.swift ├── AppDelegate.swift ├── Assets.xcassets ├── .DS_Store ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── Sticker.imageset │ ├── Contents.json │ └── Sticker.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── CGPoint+Extensions.swift ├── CIDetectorViewController.swift ├── Info.plist ├── MaskImageViewController.swift ├── SmartViewController.swift ├── SmoothViewController.swift ├── StickerViewController.swift ├── VNViewController.swift └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- 1 | Pods/ 2 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/README.md -------------------------------------------------------------------------------- /iOSDC19-Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSDC19-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSDC19-Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iOSDC19-Example.xcodeproj/project.xcworkspace/xcuserdata/beta.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcodeproj/project.xcworkspace/xcuserdata/beta.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iOSDC19-Example.xcodeproj/xcuserdata/beta.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcodeproj/xcuserdata/beta.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iOSDC19-Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSDC19-Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iOSDC19-Example.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /iOSDC19-Example.xcworkspace/xcuserdata/beta.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcworkspace/xcuserdata/beta.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iOSDC19-Example.xcworkspace/xcuserdata/beta.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcworkspace/xcuserdata/beta.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /iOSDC19-Example.xcworkspace/xcuserdata/beta.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example.xcworkspace/xcuserdata/beta.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /iOSDC19-Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/.DS_Store -------------------------------------------------------------------------------- /iOSDC19-Example/ARKitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/ARKitViewController.swift -------------------------------------------------------------------------------- /iOSDC19-Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/AppDelegate.swift -------------------------------------------------------------------------------- /iOSDC19-Example/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /iOSDC19-Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOSDC19-Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOSDC19-Example/Assets.xcassets/Sticker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/Assets.xcassets/Sticker.imageset/Contents.json -------------------------------------------------------------------------------- /iOSDC19-Example/Assets.xcassets/Sticker.imageset/Sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/Assets.xcassets/Sticker.imageset/Sticker.png -------------------------------------------------------------------------------- /iOSDC19-Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOSDC19-Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOSDC19-Example/CGPoint+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/CGPoint+Extensions.swift -------------------------------------------------------------------------------- /iOSDC19-Example/CIDetectorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/CIDetectorViewController.swift -------------------------------------------------------------------------------- /iOSDC19-Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/Info.plist -------------------------------------------------------------------------------- /iOSDC19-Example/MaskImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/MaskImageViewController.swift -------------------------------------------------------------------------------- /iOSDC19-Example/SmartViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/SmartViewController.swift -------------------------------------------------------------------------------- /iOSDC19-Example/SmoothViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/SmoothViewController.swift -------------------------------------------------------------------------------- /iOSDC19-Example/StickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/StickerViewController.swift -------------------------------------------------------------------------------- /iOSDC19-Example/VNViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/VNViewController.swift -------------------------------------------------------------------------------- /iOSDC19-Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/iOSDC19-Example/HEAD/iOSDC19-Example/ViewController.swift --------------------------------------------------------------------------------