├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.md ├── STPopupPreview.podspec ├── STPopupPreview.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── STPopupPreview.xcscheme └── xcuserdata │ └── kevinlin.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── STPopupPreview ├── Info.plist ├── STPopupPreview.h ├── STPopupPreviewRecognizer.h ├── STPopupPreviewRecognizer.m ├── UIView+STPopupPreview.h └── UIView+STPopupPreview.m └── STPopupPreviewExample ├── STPopupPreviewExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── kevinlin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── STPopupPreviewExample ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── ExampleData.json ├── ImageLoader.h ├── ImageLoader.m ├── Info.plist ├── PreviewViewController.h ├── PreviewViewController.m ├── ViewController.h ├── ViewController.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/README.md -------------------------------------------------------------------------------- /STPopupPreview.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview.podspec -------------------------------------------------------------------------------- /STPopupPreview.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /STPopupPreview.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /STPopupPreview.xcodeproj/xcshareddata/xcschemes/STPopupPreview.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview.xcodeproj/xcshareddata/xcschemes/STPopupPreview.xcscheme -------------------------------------------------------------------------------- /STPopupPreview.xcodeproj/xcuserdata/kevinlin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview.xcodeproj/xcuserdata/kevinlin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /STPopupPreview/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview/Info.plist -------------------------------------------------------------------------------- /STPopupPreview/STPopupPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview/STPopupPreview.h -------------------------------------------------------------------------------- /STPopupPreview/STPopupPreviewRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview/STPopupPreviewRecognizer.h -------------------------------------------------------------------------------- /STPopupPreview/STPopupPreviewRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview/STPopupPreviewRecognizer.m -------------------------------------------------------------------------------- /STPopupPreview/UIView+STPopupPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview/UIView+STPopupPreview.h -------------------------------------------------------------------------------- /STPopupPreview/UIView+STPopupPreview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreview/UIView+STPopupPreview.m -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample.xcodeproj/xcuserdata/kevinlin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample.xcodeproj/xcuserdata/kevinlin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample.xcodeproj/xcuserdata/kevinlin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample.xcodeproj/xcuserdata/kevinlin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/AppDelegate.h -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/AppDelegate.m -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/ExampleData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/ExampleData.json -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/ImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/ImageLoader.h -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/ImageLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/ImageLoader.m -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/Info.plist -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/PreviewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/PreviewViewController.h -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/PreviewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/PreviewViewController.m -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/ViewController.h -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/ViewController.m -------------------------------------------------------------------------------- /STPopupPreviewExample/STPopupPreviewExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lyn/STPopupPreview/HEAD/STPopupPreviewExample/STPopupPreviewExample/main.m --------------------------------------------------------------------------------