├── Demo ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── JPSThumbnailAnnotation-Info.plist ├── JPSThumbnailAnnotation-Prefix.pch ├── JPSThumbnailAnnotation.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ViewController.h ├── ViewController.m ├── apple.jpg ├── empire.jpg ├── en.lproj │ ├── InfoPlist.strings │ └── JPSViewController.xib ├── main.m └── ottawa.jpg ├── JPSThumbnailAnnotation.podspec ├── JPSThumbnailAnnotation ├── JPSThumbnail.h ├── JPSThumbnail.m ├── JPSThumbnailAnnotation.h ├── JPSThumbnailAnnotation.m ├── JPSThumbnailAnnotationView.h └── JPSThumbnailAnnotationView.m ├── LICENSE.txt ├── README.md ├── screenshots.jpg └── screenshots2.jpg /Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/Default.png -------------------------------------------------------------------------------- /Demo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/Default@2x.png -------------------------------------------------------------------------------- /Demo/JPSThumbnailAnnotation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/JPSThumbnailAnnotation-Info.plist -------------------------------------------------------------------------------- /Demo/JPSThumbnailAnnotation-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/JPSThumbnailAnnotation-Prefix.pch -------------------------------------------------------------------------------- /Demo/JPSThumbnailAnnotation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/JPSThumbnailAnnotation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/JPSThumbnailAnnotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/JPSThumbnailAnnotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/ViewController.h -------------------------------------------------------------------------------- /Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/ViewController.m -------------------------------------------------------------------------------- /Demo/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/apple.jpg -------------------------------------------------------------------------------- /Demo/empire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/empire.jpg -------------------------------------------------------------------------------- /Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/en.lproj/JPSViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/en.lproj/JPSViewController.xib -------------------------------------------------------------------------------- /Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/main.m -------------------------------------------------------------------------------- /Demo/ottawa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/Demo/ottawa.jpg -------------------------------------------------------------------------------- /JPSThumbnailAnnotation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/JPSThumbnailAnnotation.podspec -------------------------------------------------------------------------------- /JPSThumbnailAnnotation/JPSThumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/JPSThumbnailAnnotation/JPSThumbnail.h -------------------------------------------------------------------------------- /JPSThumbnailAnnotation/JPSThumbnail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/JPSThumbnailAnnotation/JPSThumbnail.m -------------------------------------------------------------------------------- /JPSThumbnailAnnotation/JPSThumbnailAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/JPSThumbnailAnnotation/JPSThumbnailAnnotation.h -------------------------------------------------------------------------------- /JPSThumbnailAnnotation/JPSThumbnailAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/JPSThumbnailAnnotation/JPSThumbnailAnnotation.m -------------------------------------------------------------------------------- /JPSThumbnailAnnotation/JPSThumbnailAnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/JPSThumbnailAnnotation/JPSThumbnailAnnotationView.h -------------------------------------------------------------------------------- /JPSThumbnailAnnotation/JPSThumbnailAnnotationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/JPSThumbnailAnnotation/JPSThumbnailAnnotationView.m -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/README.md -------------------------------------------------------------------------------- /screenshots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/screenshots.jpg -------------------------------------------------------------------------------- /screenshots2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/JPSThumbnailAnnotation/HEAD/screenshots2.jpg --------------------------------------------------------------------------------