├── .travis.yml ├── LICENSE ├── NiceGesture.podspec ├── NiceGesture.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── NiceGesture.xcscmblueprint ├── xcshareddata │ └── xcschemes │ │ └── NiceGesture.xcscheme └── xcuserdata │ └── zz.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── NiceGestureDemo.xcscheme │ └── xcschememanagement.plist ├── NiceGesture ├── Info.plist ├── NCGesturePromise.swift ├── NCLongPressGestureRecognizer.swift ├── NCPanGestureRecognizer.swift ├── NCPinchGestureRecognizer.swift ├── NCRotationGestureRecognizer.swift ├── NCScreenEdgePanGestureRecognizer.swift ├── NCSwipeGestureRecognizer.swift ├── NCTapGestureRecognizer.swift ├── NCTapPromise.swift ├── NiceGesture.h └── NiceUIViewExtension.swift ├── NiceGestureDemo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LongPressViewController.swift ├── PanViewController.swift ├── PinchViewController.swift ├── RotationViewController.swift ├── ScreenEdgePanViewController.swift ├── SwipeViewController.swift ├── TapViewController.swift └── Util.swift ├── NiceGestureDemoUITests ├── Info.plist └── NiceGestureDemoUITests.swift └── README.md /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/LICENSE -------------------------------------------------------------------------------- /NiceGesture.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture.podspec -------------------------------------------------------------------------------- /NiceGesture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NiceGesture.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NiceGesture.xcodeproj/project.xcworkspace/xcshareddata/NiceGesture.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture.xcodeproj/project.xcworkspace/xcshareddata/NiceGesture.xcscmblueprint -------------------------------------------------------------------------------- /NiceGesture.xcodeproj/xcshareddata/xcschemes/NiceGesture.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture.xcodeproj/xcshareddata/xcschemes/NiceGesture.xcscheme -------------------------------------------------------------------------------- /NiceGesture.xcodeproj/xcuserdata/zz.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture.xcodeproj/xcuserdata/zz.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /NiceGesture.xcodeproj/xcuserdata/zz.xcuserdatad/xcschemes/NiceGestureDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture.xcodeproj/xcuserdata/zz.xcuserdatad/xcschemes/NiceGestureDemo.xcscheme -------------------------------------------------------------------------------- /NiceGesture.xcodeproj/xcuserdata/zz.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture.xcodeproj/xcuserdata/zz.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /NiceGesture/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/Info.plist -------------------------------------------------------------------------------- /NiceGesture/NCGesturePromise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NCGesturePromise.swift -------------------------------------------------------------------------------- /NiceGesture/NCLongPressGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NCLongPressGestureRecognizer.swift -------------------------------------------------------------------------------- /NiceGesture/NCPanGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NCPanGestureRecognizer.swift -------------------------------------------------------------------------------- /NiceGesture/NCPinchGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NCPinchGestureRecognizer.swift -------------------------------------------------------------------------------- /NiceGesture/NCRotationGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NCRotationGestureRecognizer.swift -------------------------------------------------------------------------------- /NiceGesture/NCScreenEdgePanGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NCScreenEdgePanGestureRecognizer.swift -------------------------------------------------------------------------------- /NiceGesture/NCSwipeGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NCSwipeGestureRecognizer.swift -------------------------------------------------------------------------------- /NiceGesture/NCTapGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NCTapGestureRecognizer.swift -------------------------------------------------------------------------------- /NiceGesture/NCTapPromise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NCTapPromise.swift -------------------------------------------------------------------------------- /NiceGesture/NiceGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NiceGesture.h -------------------------------------------------------------------------------- /NiceGesture/NiceUIViewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGesture/NiceUIViewExtension.swift -------------------------------------------------------------------------------- /NiceGestureDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/AppDelegate.swift -------------------------------------------------------------------------------- /NiceGestureDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NiceGestureDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NiceGestureDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NiceGestureDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/Info.plist -------------------------------------------------------------------------------- /NiceGestureDemo/LongPressViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/LongPressViewController.swift -------------------------------------------------------------------------------- /NiceGestureDemo/PanViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/PanViewController.swift -------------------------------------------------------------------------------- /NiceGestureDemo/PinchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/PinchViewController.swift -------------------------------------------------------------------------------- /NiceGestureDemo/RotationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/RotationViewController.swift -------------------------------------------------------------------------------- /NiceGestureDemo/ScreenEdgePanViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/ScreenEdgePanViewController.swift -------------------------------------------------------------------------------- /NiceGestureDemo/SwipeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/SwipeViewController.swift -------------------------------------------------------------------------------- /NiceGestureDemo/TapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/TapViewController.swift -------------------------------------------------------------------------------- /NiceGestureDemo/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemo/Util.swift -------------------------------------------------------------------------------- /NiceGestureDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemoUITests/Info.plist -------------------------------------------------------------------------------- /NiceGestureDemoUITests/NiceGestureDemoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/NiceGestureDemoUITests/NiceGestureDemoUITests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lacklock/NiceGesture/HEAD/README.md --------------------------------------------------------------------------------