├── PhotoBrowserDemo ├── .gitignore ├── PhotoBrowserDemo copy-Info.plist ├── PhotoBrowserDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── admin.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── admin.xcuserdatad │ │ └── xcschemes │ │ │ ├── PhotoBrowserCustomCoreDemo.xcscheme │ │ │ ├── PhotoBrowserDemo.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── heroims.xcuserdatad │ │ └── xcschemes │ │ ├── PhotoBrowserCustomCoreDemo.xcscheme │ │ ├── PhotoBrowserDemo.xcscheme │ │ └── xcschememanagement.plist ├── PhotoBrowserDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── admin.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── heroims.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── PhotoBrowserDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Custom Images │ │ ├── PhotoBrowser_customArrowLeft.png │ │ ├── PhotoBrowser_customArrowLeft@2x.png │ │ ├── PhotoBrowser_customArrowLeftSelected.png │ │ ├── PhotoBrowser_customArrowLeftSelected@2x.png │ │ ├── PhotoBrowser_customArrowRight.png │ │ ├── PhotoBrowser_customArrowRight@2x.png │ │ ├── PhotoBrowser_customArrowRightSelected.png │ │ ├── PhotoBrowser_customArrowRightSelected@2x.png │ │ ├── PhotoBrowser_customDoneButton.png │ │ └── PhotoBrowser_customDoneButton@2x.png │ ├── Info.plist │ ├── Photos │ │ ├── photo1l.jpg │ │ ├── photo1m.jpg │ │ ├── photo2l.jpg │ │ ├── photo2m.jpg │ │ ├── photo3l.jpg │ │ ├── photo3m.jpg │ │ ├── photo4l.jpg │ │ ├── photo4m.jpg │ │ └── photo5l.gif │ ├── ViewController.h │ ├── ViewController.m │ ├── ZYQPhotoBrowser+Custom.h │ ├── ZYQPhotoBrowser+Custom.m │ └── main.m ├── PhotoBrowserDemoTests │ ├── Info.plist │ └── PhotoBrowserDemoTests.m ├── PhotoBrowserDemoUITests │ ├── Info.plist │ └── PhotoBrowserDemoUITests.m ├── Podfile └── Podfile.lock ├── README.md ├── ZYQPhotoBrowser-NoDependency.podspec ├── ZYQPhotoBrowser.podspec └── ZYQPhotoBrowser ├── ZYQCaptionView.h ├── ZYQCaptionView.m ├── ZYQPBConstants.h ├── ZYQPBLocalizations.bundle ├── de.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── nl.lproj │ └── Localizable.strings ├── pt.lproj │ └── Localizable.strings ├── ru.lproj │ └── Localizable.strings └── zh-Hans.lproj │ └── Localizable.strings ├── ZYQPhoto.h ├── ZYQPhoto.m ├── ZYQPhotoBrowser.bundle └── images │ ├── IDMPhotoBrowser_arrowLeft.png │ ├── IDMPhotoBrowser_arrowLeft@2x.png │ ├── IDMPhotoBrowser_arrowRight.png │ └── IDMPhotoBrowser_arrowRight@2x.png ├── ZYQPhotoBrowser.h ├── ZYQPhotoBrowser.m ├── ZYQPhotoProtocol.h ├── ZYQTapDetectingImageView.h ├── ZYQTapDetectingImageView.m ├── ZYQTapDetectingView.h ├── ZYQTapDetectingView.m ├── ZYQZoomingScrollView.h └── ZYQZoomingScrollView.m /PhotoBrowserDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/.gitignore -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo copy-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo copy-Info.plist -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/PhotoBrowserCustomCoreDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/PhotoBrowserCustomCoreDemo.xcscheme -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/PhotoBrowserDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/PhotoBrowserDemo.xcscheme -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/heroims.xcuserdatad/xcschemes/PhotoBrowserCustomCoreDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/heroims.xcuserdatad/xcschemes/PhotoBrowserCustomCoreDemo.xcscheme -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/heroims.xcuserdatad/xcschemes/PhotoBrowserDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/heroims.xcuserdatad/xcschemes/PhotoBrowserDemo.xcscheme -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/heroims.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcodeproj/xcuserdata/heroims.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcworkspace/xcuserdata/admin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcworkspace/xcuserdata/admin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcworkspace/xcuserdata/heroims.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcworkspace/xcuserdata/heroims.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo.xcworkspace/xcuserdata/heroims.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo.xcworkspace/xcuserdata/heroims.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/AppDelegate.h -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/AppDelegate.m -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowLeft.png -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowLeft@2x.png -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowLeftSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowLeftSelected.png -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowLeftSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowLeftSelected@2x.png -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowRight.png -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowRight@2x.png -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowRightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowRightSelected.png -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowRightSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customArrowRightSelected@2x.png -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customDoneButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customDoneButton.png -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customDoneButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Custom Images/PhotoBrowser_customDoneButton@2x.png -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Info.plist -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo1l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo1l.jpg -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo1m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo1m.jpg -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo2l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo2l.jpg -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo2m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo2m.jpg -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo3l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo3l.jpg -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo3m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo3m.jpg -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo4l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo4l.jpg -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo4m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo4m.jpg -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo5l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/Photos/photo5l.gif -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/ViewController.h -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/ViewController.m -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/ZYQPhotoBrowser+Custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/ZYQPhotoBrowser+Custom.h -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/ZYQPhotoBrowser+Custom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/ZYQPhotoBrowser+Custom.m -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemo/main.m -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemoTests/Info.plist -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemoTests/PhotoBrowserDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemoTests/PhotoBrowserDemoTests.m -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemoUITests/Info.plist -------------------------------------------------------------------------------- /PhotoBrowserDemo/PhotoBrowserDemoUITests/PhotoBrowserDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/PhotoBrowserDemoUITests/PhotoBrowserDemoUITests.m -------------------------------------------------------------------------------- /PhotoBrowserDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/Podfile -------------------------------------------------------------------------------- /PhotoBrowserDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/PhotoBrowserDemo/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/README.md -------------------------------------------------------------------------------- /ZYQPhotoBrowser-NoDependency.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser-NoDependency.podspec -------------------------------------------------------------------------------- /ZYQPhotoBrowser.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser.podspec -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQCaptionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQCaptionView.h -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQCaptionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQCaptionView.m -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPBConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPBConstants.h -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPBLocalizations.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPBLocalizations.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPBLocalizations.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPBLocalizations.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPBLocalizations.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPBLocalizations.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPBLocalizations.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPBLocalizations.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPBLocalizations.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPBLocalizations.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPBLocalizations.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPBLocalizations.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPBLocalizations.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPBLocalizations.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPBLocalizations.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPBLocalizations.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPBLocalizations.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPBLocalizations.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPhoto.h -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPhoto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPhoto.m -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPhotoBrowser.bundle/images/IDMPhotoBrowser_arrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPhotoBrowser.bundle/images/IDMPhotoBrowser_arrowLeft.png -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPhotoBrowser.bundle/images/IDMPhotoBrowser_arrowLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPhotoBrowser.bundle/images/IDMPhotoBrowser_arrowLeft@2x.png -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPhotoBrowser.bundle/images/IDMPhotoBrowser_arrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPhotoBrowser.bundle/images/IDMPhotoBrowser_arrowRight.png -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPhotoBrowser.bundle/images/IDMPhotoBrowser_arrowRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPhotoBrowser.bundle/images/IDMPhotoBrowser_arrowRight@2x.png -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPhotoBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPhotoBrowser.h -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPhotoBrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPhotoBrowser.m -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQPhotoProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQPhotoProtocol.h -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQTapDetectingImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQTapDetectingImageView.h -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQTapDetectingImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQTapDetectingImageView.m -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQTapDetectingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQTapDetectingView.h -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQTapDetectingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQTapDetectingView.m -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQZoomingScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQZoomingScrollView.h -------------------------------------------------------------------------------- /ZYQPhotoBrowser/ZYQZoomingScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heroims/ZYQPhotoBrowser/HEAD/ZYQPhotoBrowser/ZYQZoomingScrollView.m --------------------------------------------------------------------------------