├── LICENSE ├── OfflineReader ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── MMAppDelegate.h ├── MMAppDelegate.m ├── MMThumbnailPPTController.h ├── MMThumbnailPPTController.m ├── PowerPointThumb-Info.plist ├── PowerPointThumb-Prefix.pch ├── WorstPresentationEverStandAlone.ppt ├── en.lproj │ └── InfoPlist.strings └── main.m ├── PowerPointThumb.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/LICENSE -------------------------------------------------------------------------------- /OfflineReader/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/OfflineReader/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OfflineReader/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/OfflineReader/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /OfflineReader/MMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/OfflineReader/MMAppDelegate.h -------------------------------------------------------------------------------- /OfflineReader/MMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/OfflineReader/MMAppDelegate.m -------------------------------------------------------------------------------- /OfflineReader/MMThumbnailPPTController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/OfflineReader/MMThumbnailPPTController.h -------------------------------------------------------------------------------- /OfflineReader/MMThumbnailPPTController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/OfflineReader/MMThumbnailPPTController.m -------------------------------------------------------------------------------- /OfflineReader/PowerPointThumb-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/OfflineReader/PowerPointThumb-Info.plist -------------------------------------------------------------------------------- /OfflineReader/PowerPointThumb-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/OfflineReader/PowerPointThumb-Prefix.pch -------------------------------------------------------------------------------- /OfflineReader/WorstPresentationEverStandAlone.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/OfflineReader/WorstPresentationEverStandAlone.ppt -------------------------------------------------------------------------------- /OfflineReader/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /OfflineReader/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/OfflineReader/main.m -------------------------------------------------------------------------------- /PowerPointThumb.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/PowerPointThumb.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PowerPointThumb.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/PowerPointThumb.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PowerPointToUIImage/HEAD/README.md --------------------------------------------------------------------------------