├── .gitignore ├── GLTapLabelDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── GLTapLabelDemo ├── GLAppDelegate.h ├── GLAppDelegate.m ├── GLTapLabel.h ├── GLTapLabel.m ├── GLTapLabelDelegate.h ├── GLTapLabelDemo-Info.plist ├── GLTapLabelDemo-Prefix.pch ├── GLViewController.h ├── GLViewController.m ├── en.lproj │ ├── GLViewController.xib │ └── InfoPlist.strings └── main.m ├── GLTapLabelDemoTests ├── GLTapLabelDemoTests-Info.plist ├── GLTapLabelDemoTests.h ├── GLTapLabelDemoTests.m └── en.lproj │ └── InfoPlist.strings ├── README.md └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /GLTapLabelDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GLTapLabelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GLTapLabelDemo/GLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/GLAppDelegate.h -------------------------------------------------------------------------------- /GLTapLabelDemo/GLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/GLAppDelegate.m -------------------------------------------------------------------------------- /GLTapLabelDemo/GLTapLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/GLTapLabel.h -------------------------------------------------------------------------------- /GLTapLabelDemo/GLTapLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/GLTapLabel.m -------------------------------------------------------------------------------- /GLTapLabelDemo/GLTapLabelDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/GLTapLabelDelegate.h -------------------------------------------------------------------------------- /GLTapLabelDemo/GLTapLabelDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/GLTapLabelDemo-Info.plist -------------------------------------------------------------------------------- /GLTapLabelDemo/GLTapLabelDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/GLTapLabelDemo-Prefix.pch -------------------------------------------------------------------------------- /GLTapLabelDemo/GLViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/GLViewController.h -------------------------------------------------------------------------------- /GLTapLabelDemo/GLViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/GLViewController.m -------------------------------------------------------------------------------- /GLTapLabelDemo/en.lproj/GLViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/en.lproj/GLViewController.xib -------------------------------------------------------------------------------- /GLTapLabelDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GLTapLabelDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemo/main.m -------------------------------------------------------------------------------- /GLTapLabelDemoTests/GLTapLabelDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemoTests/GLTapLabelDemoTests-Info.plist -------------------------------------------------------------------------------- /GLTapLabelDemoTests/GLTapLabelDemoTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemoTests/GLTapLabelDemoTests.h -------------------------------------------------------------------------------- /GLTapLabelDemoTests/GLTapLabelDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/GLTapLabelDemoTests/GLTapLabelDemoTests.m -------------------------------------------------------------------------------- /GLTapLabelDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laullon/GLTapLabelDemo/HEAD/screenshot.png --------------------------------------------------------------------------------