├── .gitignore ├── LICENSE.md ├── README.md ├── SimpleTouch.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SimpleTouch.xcscheme ├── SimpleTouch ├── Info.plist ├── Int-Extensions.swift ├── SimpleTouch.h ├── SimpleTouch.swift ├── TouchIDError.swift └── TouchIDResponse.swift ├── SimpleTouchDemo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift └── SimpleTouchTests ├── Info.plist └── SimpleTouchTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/README.md -------------------------------------------------------------------------------- /SimpleTouch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SimpleTouch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SimpleTouch.xcodeproj/xcshareddata/xcschemes/SimpleTouch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouch.xcodeproj/xcshareddata/xcschemes/SimpleTouch.xcscheme -------------------------------------------------------------------------------- /SimpleTouch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouch/Info.plist -------------------------------------------------------------------------------- /SimpleTouch/Int-Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouch/Int-Extensions.swift -------------------------------------------------------------------------------- /SimpleTouch/SimpleTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouch/SimpleTouch.h -------------------------------------------------------------------------------- /SimpleTouch/SimpleTouch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouch/SimpleTouch.swift -------------------------------------------------------------------------------- /SimpleTouch/TouchIDError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouch/TouchIDError.swift -------------------------------------------------------------------------------- /SimpleTouch/TouchIDResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouch/TouchIDResponse.swift -------------------------------------------------------------------------------- /SimpleTouchDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouchDemo/AppDelegate.swift -------------------------------------------------------------------------------- /SimpleTouchDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouchDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SimpleTouchDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouchDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SimpleTouchDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouchDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SimpleTouchDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouchDemo/Info.plist -------------------------------------------------------------------------------- /SimpleTouchDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouchDemo/ViewController.swift -------------------------------------------------------------------------------- /SimpleTouchTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouchTests/Info.plist -------------------------------------------------------------------------------- /SimpleTouchTests/SimpleTouchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simple-machines/simple-touch/HEAD/SimpleTouchTests/SimpleTouchTests.swift --------------------------------------------------------------------------------