├── .gitignore ├── .travis.yml ├── HPTextViewTapGestureRecognizer.podspec ├── HPTextViewTapGestureRecognizer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── HPTextViewTapGestureRecognizer.xcscheme │ └── HPTextViewTapGestureRecognizerDemo.xcscheme ├── HPTextViewTapGestureRecognizer ├── HPTextViewTapGestureRecognizer.h └── HPTextViewTapGestureRecognizer.m ├── HPTextViewTapGestureRecognizerDemo ├── Base.lproj │ └── Main.storyboard ├── HPAppDelegate.h ├── HPAppDelegate.m ├── HPTextViewTapGestureRecognizerDemo-Info.plist ├── HPTextViewTapGestureRecognizerDemo-Prefix.pch ├── HPViewController.h ├── HPViewController.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── chihuahua@2x.jpg ├── en.lproj │ └── InfoPlist.strings └── main.m ├── HPTextViewTapGestureRecognizerTests ├── HPTextViewTapGestureRecognizerTests-Info.plist ├── HPTextViewTapGestureRecognizerTests.m └── en.lproj │ └── InfoPlist.strings ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/.travis.yml -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizer.podspec -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizer.xcodeproj/xcshareddata/xcschemes/HPTextViewTapGestureRecognizer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizer.xcodeproj/xcshareddata/xcschemes/HPTextViewTapGestureRecognizer.xcscheme -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizer.xcodeproj/xcshareddata/xcschemes/HPTextViewTapGestureRecognizerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizer.xcodeproj/xcshareddata/xcschemes/HPTextViewTapGestureRecognizerDemo.xcscheme -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizer/HPTextViewTapGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizer/HPTextViewTapGestureRecognizer.h -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizer/HPTextViewTapGestureRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizer/HPTextViewTapGestureRecognizer.m -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/HPAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/HPAppDelegate.h -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/HPAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/HPAppDelegate.m -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/HPTextViewTapGestureRecognizerDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/HPTextViewTapGestureRecognizerDemo-Info.plist -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/HPTextViewTapGestureRecognizerDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/HPTextViewTapGestureRecognizerDemo-Prefix.pch -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/HPViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/HPViewController.h -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/HPViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/HPViewController.m -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/chihuahua@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/chihuahua@2x.jpg -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerDemo/main.m -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerTests/HPTextViewTapGestureRecognizerTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerTests/HPTextViewTapGestureRecognizerTests-Info.plist -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerTests/HPTextViewTapGestureRecognizerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/HPTextViewTapGestureRecognizerTests/HPTextViewTapGestureRecognizerTests.m -------------------------------------------------------------------------------- /HPTextViewTapGestureRecognizerTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpique/HPTextViewTapGestureRecognizer/HEAD/README.md --------------------------------------------------------------------------------