├── .gitignore ├── .idea ├── .name ├── FDRotationGestureRecognizer.iml ├── encodings.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── vcs.xml ├── workspace.xml └── xcode.xml ├── FDRotationGestureRecognizer.podspec ├── FDRotationGestureRecognizer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── frank.xcuserdatad │ └── xcschemes │ ├── All in FDRotationGestureRecognizerTests.m.xcscheme │ ├── FDRotationGestureRecognizer.xcscheme │ └── xcschememanagement.plist ├── FDRotationGestureRecognizer ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── FDRotationGestureRecognizer │ ├── FDRotationGestureRecognizer.h │ └── FDRotationGestureRecognizer.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── FDRotationGestureRecognizerTests ├── FDRotationGestureRecognizerTests.m └── Info.plist ├── LICENSE ├── Other ├── demo.gif ├── demo.mov ├── explanation.png └── myfert.jpeg └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ignored/ -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | FDRotationGestureRecognizer -------------------------------------------------------------------------------- /.idea/FDRotationGestureRecognizer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/.idea/FDRotationGestureRecognizer.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.idea/xcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/.idea/xcode.xml -------------------------------------------------------------------------------- /FDRotationGestureRecognizer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer.podspec -------------------------------------------------------------------------------- /FDRotationGestureRecognizer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FDRotationGestureRecognizer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FDRotationGestureRecognizer.xcodeproj/xcuserdata/frank.xcuserdatad/xcschemes/All in FDRotationGestureRecognizerTests.m.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer.xcodeproj/xcuserdata/frank.xcuserdatad/xcschemes/All in FDRotationGestureRecognizerTests.m.xcscheme -------------------------------------------------------------------------------- /FDRotationGestureRecognizer.xcodeproj/xcuserdata/frank.xcuserdatad/xcschemes/FDRotationGestureRecognizer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer.xcodeproj/xcuserdata/frank.xcuserdatad/xcschemes/FDRotationGestureRecognizer.xcscheme -------------------------------------------------------------------------------- /FDRotationGestureRecognizer.xcodeproj/xcuserdata/frank.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer.xcodeproj/xcuserdata/frank.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/AppDelegate.h -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/AppDelegate.m -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/FDRotationGestureRecognizer/FDRotationGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/FDRotationGestureRecognizer/FDRotationGestureRecognizer.h -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/FDRotationGestureRecognizer/FDRotationGestureRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/FDRotationGestureRecognizer/FDRotationGestureRecognizer.m -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/Info.plist -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/ViewController.h -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/ViewController.m -------------------------------------------------------------------------------- /FDRotationGestureRecognizer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizer/main.m -------------------------------------------------------------------------------- /FDRotationGestureRecognizerTests/FDRotationGestureRecognizerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizerTests/FDRotationGestureRecognizerTests.m -------------------------------------------------------------------------------- /FDRotationGestureRecognizerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/FDRotationGestureRecognizerTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/LICENSE -------------------------------------------------------------------------------- /Other/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/Other/demo.gif -------------------------------------------------------------------------------- /Other/demo.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/Other/demo.mov -------------------------------------------------------------------------------- /Other/explanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/Other/explanation.png -------------------------------------------------------------------------------- /Other/myfert.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/Other/myfert.jpeg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankdilo/FDRotationGestureRecognizer/HEAD/README.md --------------------------------------------------------------------------------