├── .gitignore ├── Demo ├── HapTicDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── HapTicDemo.xcworkspace │ └── contents.xcworkspacedata ├── HapTicDemo │ ├── Controllers │ │ ├── AppDelegate.swift │ │ └── ViewController.swift │ ├── Model │ │ └── Feedback.swift │ └── Supporting Files │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── haptic@2x.png │ │ │ └── haptic@3x.png │ │ ├── Contents.json │ │ └── haptic.imageset │ │ │ ├── Contents.json │ │ │ └── haptic.png │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ └── Info.plist ├── Podfile └── Podfile.lock ├── HapTic.podspec ├── LICENSE ├── README.md └── Sources ├── HapTic.swift └── HapTicButton.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/HapTicDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/HapTicDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/HapTicDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/HapTicDemo/Controllers/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Controllers/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/HapTicDemo/Controllers/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Controllers/ViewController.swift -------------------------------------------------------------------------------- /Demo/HapTicDemo/Model/Feedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Model/Feedback.swift -------------------------------------------------------------------------------- /Demo/HapTicDemo/Supporting Files/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Supporting Files/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/HapTicDemo/Supporting Files/Assets.xcassets/AppIcon.appiconset/haptic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Supporting Files/Assets.xcassets/AppIcon.appiconset/haptic@2x.png -------------------------------------------------------------------------------- /Demo/HapTicDemo/Supporting Files/Assets.xcassets/AppIcon.appiconset/haptic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Supporting Files/Assets.xcassets/AppIcon.appiconset/haptic@3x.png -------------------------------------------------------------------------------- /Demo/HapTicDemo/Supporting Files/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Supporting Files/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/HapTicDemo/Supporting Files/Assets.xcassets/haptic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Supporting Files/Assets.xcassets/haptic.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/HapTicDemo/Supporting Files/Assets.xcassets/haptic.imageset/haptic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Supporting Files/Assets.xcassets/haptic.imageset/haptic.png -------------------------------------------------------------------------------- /Demo/HapTicDemo/Supporting Files/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Supporting Files/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/HapTicDemo/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/HapTicDemo/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/Podfile -------------------------------------------------------------------------------- /Demo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Demo/Podfile.lock -------------------------------------------------------------------------------- /HapTic.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/HapTic.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/README.md -------------------------------------------------------------------------------- /Sources/HapTic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Sources/HapTic.swift -------------------------------------------------------------------------------- /Sources/HapTicButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimDarren/HapTic/HEAD/Sources/HapTicButton.swift --------------------------------------------------------------------------------