├── .github └── workflows │ └── swift_build.yml ├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Package.swift ├── README.md ├── SKPhotoBrowser.podspec ├── SKPhotoBrowser.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── SKPhotoBrowser.xcscheme ├── SKPhotoBrowser ├── Info.plist ├── SKActionView.swift ├── SKAnimator.swift ├── SKButtons.swift ├── SKCache.swift ├── SKCacheable.swift ├── SKCaptionView.swift ├── SKDetectingImageView.swift ├── SKDetectingView.swift ├── SKIndicatorView.swift ├── SKLocalPhoto.swift ├── SKMesurement.swift ├── SKPaginationView.swift ├── SKPagingScrollView.swift ├── SKPhoto.swift ├── SKPhotoBrowser.bundle │ └── images │ │ ├── btn_common_back_wh.png │ │ ├── btn_common_back_wh@2x.png │ │ ├── btn_common_back_wh@3x.png │ │ ├── btn_common_close_wh.png │ │ ├── btn_common_close_wh@2x.png │ │ ├── btn_common_close_wh@3x.png │ │ ├── btn_common_delete_wh.png │ │ ├── btn_common_delete_wh@2x.png │ │ ├── btn_common_delete_wh@3x.png │ │ ├── btn_common_forward_wh.png │ │ ├── btn_common_forward_wh@2x.png │ │ └── btn_common_forward_wh@3x.png ├── SKPhotoBrowser.h ├── SKPhotoBrowser.swift ├── SKPhotoBrowserDelegate.swift ├── SKPhotoBrowserOptions.swift ├── SKToolbar.swift ├── SKZoomingScrollView.swift └── extensions │ ├── ObjC │ ├── UIImage+animatedGIF.h │ └── UIImage+animatedGIF.m │ ├── UIApplication+UIWindow.swift │ ├── UIImage+BundledImage.swift │ ├── UIImage+Rotation.swift │ ├── UIView+Radius.swift │ └── UIView+ScreenshotProtection.swift ├── SKPhotoBrowserExample ├── Podfile ├── Podfile.lock ├── SKPhotoBrowserExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── SKPhotoBrowserExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── SKPhotoBrowserExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── FromCameraRollViewController.swift │ ├── FromLocalViewController.swift │ ├── FromWebViewController.swift │ ├── Info.plist │ └── SampleImages │ ├── image0.jpg │ ├── image1.jpg │ ├── image10.jpg │ ├── image12.jpg │ ├── image2.jpg │ ├── image3.jpg │ ├── image4.jpg │ ├── image5.jpg │ ├── image6.jpg │ ├── image7.jpg │ ├── image8.jpg │ ├── image9.jpg │ └── sample_gif.gif ├── SKPhotoBrowserTests ├── Info.plist ├── SKCacheTests.swift └── SKPhotoBrowserTests.swift ├── Screenshots ├── example01.gif ├── example02.gif └── example03.gif ├── package.json └── yarn.lock /.github/workflows/swift_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/.github/workflows/swift_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/README.md -------------------------------------------------------------------------------- /SKPhotoBrowser.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser.podspec -------------------------------------------------------------------------------- /SKPhotoBrowser.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SKPhotoBrowser.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SKPhotoBrowser.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SKPhotoBrowser.xcodeproj/xcshareddata/xcschemes/SKPhotoBrowser.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser.xcodeproj/xcshareddata/xcschemes/SKPhotoBrowser.xcscheme -------------------------------------------------------------------------------- /SKPhotoBrowser/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/Info.plist -------------------------------------------------------------------------------- /SKPhotoBrowser/SKActionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKActionView.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKAnimator.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKButtons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKButtons.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKCache.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKCacheable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKCacheable.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKCaptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKCaptionView.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKDetectingImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKDetectingImageView.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKDetectingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKDetectingView.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKIndicatorView.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKLocalPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKLocalPhoto.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKMesurement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKMesurement.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPaginationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPaginationView.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPagingScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPagingScrollView.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhoto.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_back_wh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_back_wh.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_back_wh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_back_wh@2x.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_back_wh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_back_wh@3x.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_close_wh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_close_wh.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_close_wh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_close_wh@2x.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_close_wh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_close_wh@3x.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_delete_wh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_delete_wh.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_delete_wh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_delete_wh@2x.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_delete_wh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_delete_wh@3x.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_forward_wh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_forward_wh.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_forward_wh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_forward_wh@2x.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_forward_wh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.bundle/images/btn_common_forward_wh@3x.png -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.h -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowser.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowserDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowserDelegate.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKPhotoBrowserOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKPhotoBrowserOptions.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKToolbar.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/SKZoomingScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/SKZoomingScrollView.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/extensions/ObjC/UIImage+animatedGIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/extensions/ObjC/UIImage+animatedGIF.h -------------------------------------------------------------------------------- /SKPhotoBrowser/extensions/ObjC/UIImage+animatedGIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/extensions/ObjC/UIImage+animatedGIF.m -------------------------------------------------------------------------------- /SKPhotoBrowser/extensions/UIApplication+UIWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/extensions/UIApplication+UIWindow.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/extensions/UIImage+BundledImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/extensions/UIImage+BundledImage.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/extensions/UIImage+Rotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/extensions/UIImage+Rotation.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/extensions/UIView+Radius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/extensions/UIView+Radius.swift -------------------------------------------------------------------------------- /SKPhotoBrowser/extensions/UIView+ScreenshotProtection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowser/extensions/UIView+ScreenshotProtection.swift -------------------------------------------------------------------------------- /SKPhotoBrowserExample/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '9.0' 2 | use_frameworks! 3 | 4 | target "SKPhotoBrowserExample" do 5 | pod 'SDWebImage' 6 | end 7 | -------------------------------------------------------------------------------- /SKPhotoBrowserExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/Podfile.lock -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/AppDelegate.swift -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/FromCameraRollViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/FromCameraRollViewController.swift -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/FromLocalViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/FromLocalViewController.swift -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/FromWebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/FromWebViewController.swift -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/Info.plist -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image0.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image1.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image10.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image12.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image2.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image3.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image4.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image5.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image6.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image7.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image8.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/image9.jpg -------------------------------------------------------------------------------- /SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/sample_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserExample/SKPhotoBrowserExample/SampleImages/sample_gif.gif -------------------------------------------------------------------------------- /SKPhotoBrowserTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserTests/Info.plist -------------------------------------------------------------------------------- /SKPhotoBrowserTests/SKCacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserTests/SKCacheTests.swift -------------------------------------------------------------------------------- /SKPhotoBrowserTests/SKPhotoBrowserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/SKPhotoBrowserTests/SKPhotoBrowserTests.swift -------------------------------------------------------------------------------- /Screenshots/example01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/Screenshots/example01.gif -------------------------------------------------------------------------------- /Screenshots/example02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/Screenshots/example02.gif -------------------------------------------------------------------------------- /Screenshots/example03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/Screenshots/example03.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suzuki-0000/SKPhotoBrowser/HEAD/yarn.lock --------------------------------------------------------------------------------