├── .github └── ISSUE_TEMPLATE.MD ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── CHANGELOG.md ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── addPhoto.imageset │ │ ├── Contents.json │ │ ├── addPhoto@2x.png │ │ └── addPhoto@3x.png │ ├── close.imageset │ │ ├── Contents.json │ │ ├── close@2x.png │ │ └── close@3x.png │ ├── image1.imageset │ │ ├── Contents.json │ │ └── image1.png │ ├── image2.imageset │ │ ├── Contents.json │ │ └── image2.png │ ├── image3.imageset │ │ ├── Contents.json │ │ └── image3.png │ ├── imageSticker1.imageset │ │ ├── Contents.json │ │ └── imageSticker1.png │ ├── imageSticker10.imageset │ │ ├── Contents.json │ │ └── imageSticker10.png │ ├── imageSticker11.imageset │ │ ├── Contents.json │ │ └── imageSticker11.png │ ├── imageSticker12.imageset │ │ ├── Contents.json │ │ └── imageSticker12.png │ ├── imageSticker13.imageset │ │ ├── Contents.json │ │ └── imageSticker13.png │ ├── imageSticker14.imageset │ │ ├── Contents.json │ │ └── imageSticker14.png │ ├── imageSticker15.imageset │ │ ├── Contents.json │ │ └── imageSticker15.png │ ├── imageSticker16.imageset │ │ ├── Contents.json │ │ └── imageSticker16.png │ ├── imageSticker17.imageset │ │ ├── Contents.json │ │ └── imageSticker17.png │ ├── imageSticker18.imageset │ │ ├── Contents.json │ │ └── imageSticker18.png │ ├── imageSticker2.imageset │ │ ├── Contents.json │ │ └── imageSticker2.png │ ├── imageSticker3.imageset │ │ ├── Contents.json │ │ └── imageSticker3.png │ ├── imageSticker4.imageset │ │ ├── Contents.json │ │ └── imageSticker4.png │ ├── imageSticker5.imageset │ │ ├── Contents.json │ │ └── imageSticker5.png │ ├── imageSticker6.imageset │ │ ├── Contents.json │ │ └── imageSticker6.png │ ├── imageSticker7.imageset │ │ ├── Contents.json │ │ └── imageSticker7.png │ ├── imageSticker8.imageset │ │ ├── Contents.json │ │ └── imageSticker8.png │ ├── imageSticker9.imageset │ │ ├── Contents.json │ │ └── imageSticker9.png │ └── playVideo.imageset │ │ ├── Contents.json │ │ ├── playVideo@2x.png │ │ └── playVideo@3x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CustomAlert │ ├── CustomAlertController.swift │ ├── CustomAlertControllerTransitionAnimation.swift │ └── ZLCustomAlertAction+Color.swift │ ├── Example-Bridging-Header.h │ ├── Extension │ └── UIColor+Hex.swift │ ├── ImageCell.swift │ ├── ImageStickerContainerView.swift │ ├── Info.plist │ ├── Kingfisher │ ├── Cache │ │ ├── CacheSerializer.swift │ │ ├── DiskStorage.swift │ │ ├── FormatIndicatedCacheSerializer.swift │ │ ├── ImageCache.swift │ │ ├── MemoryStorage.swift │ │ └── Storage.swift │ ├── Extensions │ │ ├── CPListItem+Kingfisher.swift │ │ ├── ImageView+Kingfisher.swift │ │ ├── NSButton+Kingfisher.swift │ │ ├── NSTextAttachment+Kingfisher.swift │ │ ├── TVMonogramView+Kingfisher.swift │ │ ├── UIButton+Kingfisher.swift │ │ └── WKInterfaceImage+Kingfisher.swift │ ├── General │ │ ├── ImageSource │ │ │ ├── AVAssetImageDataProvider.swift │ │ │ ├── ImageDataProvider.swift │ │ │ ├── Resource.swift │ │ │ └── Source.swift │ │ ├── KF.swift │ │ ├── KFOptionsSetter.swift │ │ ├── Kingfisher.swift │ │ ├── KingfisherError.swift │ │ ├── KingfisherManager.swift │ │ └── KingfisherOptionsInfo.swift │ ├── Image │ │ ├── Filter.swift │ │ ├── GIFAnimatedImage.swift │ │ ├── GraphicsContext.swift │ │ ├── Image.swift │ │ ├── ImageDrawing.swift │ │ ├── ImageFormat.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageProgressive.swift │ │ ├── ImageTransition.swift │ │ └── Placeholder.swift │ ├── Networking │ │ ├── AuthenticationChallengeResponsable.swift │ │ ├── ImageDataProcessor.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageDownloaderDelegate.swift │ │ ├── ImageModifier.swift │ │ ├── ImagePrefetcher.swift │ │ ├── RedirectHandler.swift │ │ ├── RequestModifier.swift │ │ ├── RetryStrategy.swift │ │ ├── SessionDataTask.swift │ │ └── SessionDelegate.swift │ ├── Utility │ │ ├── Box.swift │ │ ├── CallbackQueue.swift │ │ ├── Delegate.swift │ │ ├── ExtensionHelpers.swift │ │ ├── Result.swift │ │ ├── Runtime.swift │ │ ├── SizeExtensions.swift │ │ └── String+MD5.swift │ └── Views │ │ ├── AnimatedImageView.swift │ │ └── Indicator.swift │ ├── LanguagePickerView.swift │ ├── PhotoConfigureCNViewController.swift │ ├── PhotoConfigureViewController.swift │ ├── SceneDelegate.swift │ ├── SnapKit │ ├── Constraint.swift │ ├── ConstraintAttributes.swift │ ├── ConstraintConfig.swift │ ├── ConstraintConstantTarget.swift │ ├── ConstraintDSL.swift │ ├── ConstraintDescription.swift │ ├── ConstraintDirectionalInsetTarget.swift │ ├── ConstraintDirectionalInsets.swift │ ├── ConstraintInsetTarget.swift │ ├── ConstraintInsets.swift │ ├── ConstraintItem.swift │ ├── ConstraintLayoutGuide+Extensions.swift │ ├── ConstraintLayoutGuide.swift │ ├── ConstraintLayoutGuideDSL.swift │ ├── ConstraintLayoutSupport.swift │ ├── ConstraintLayoutSupportDSL.swift │ ├── ConstraintMaker.swift │ ├── ConstraintMakerEditable.swift │ ├── ConstraintMakerExtendable.swift │ ├── ConstraintMakerFinalizable.swift │ ├── ConstraintMakerPriortizable.swift │ ├── ConstraintMakerRelatable+Extensions.swift │ ├── ConstraintMakerRelatable.swift │ ├── ConstraintMultiplierTarget.swift │ ├── ConstraintOffsetTarget.swift │ ├── ConstraintPriority.swift │ ├── ConstraintPriorityTarget.swift │ ├── ConstraintRelatableTarget.swift │ ├── ConstraintRelation.swift │ ├── ConstraintView+Extensions.swift │ ├── ConstraintView.swift │ ├── ConstraintViewDSL.swift │ ├── Debugging.swift │ ├── LayoutConstraint.swift │ ├── LayoutConstraintItem.swift │ ├── SnapKit.h │ ├── Typealiases.swift │ └── UILayoutSupport+Extensions.swift │ ├── ViewController.swift │ ├── WeChatMomentDemoViewController.swift │ ├── ZLCustomFilter.swift │ ├── ar.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── de.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── es-419.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── fr.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── id.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── it.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── ja.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── ko.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── ms.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── nl.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── pt-BR.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── ru.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── tr.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── vi.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ ├── zh-Hans.lproj │ ├── LaunchScreen.strings │ └── Main.strings │ └── zh-Hant.lproj │ ├── LaunchScreen.strings │ └── Main.strings ├── LICENSE ├── Package.swift ├── README.md ├── README_CN.md ├── Sources ├── Animation │ ├── ZLClipImageDismissAnimatedTransition.swift │ ├── ZLImagePreviewDismissInteractiveTransition.swift │ ├── ZLPhotoPreviewAnimatedTransition.swift │ ├── ZLPhotoPreviewPopInteractiveTransition.swift │ └── ZLThumbnailDismissInteractiveTransition.swift ├── Camera │ └── ZLCustomCamera.swift ├── Edit │ ├── ZLAdjustSlider.swift │ ├── ZLBaseStickerView.swift │ ├── ZLBaseStickertState.swift │ ├── ZLClipImageViewController.swift │ ├── ZLClipOverlayView.swift │ ├── ZLEditImageViewController.swift │ ├── ZLEditToolCells.swift │ ├── ZLEditVideoOverlayView.swift │ ├── ZLEditVideoViewController.swift │ ├── ZLEditorManager.swift │ ├── ZLFilter.swift │ ├── ZLImageStickerView.swift │ ├── ZLInputTextViewController.swift │ ├── ZLPaths.swift │ └── ZLTextStickerView.swift ├── Extensions │ ├── AVCaptureDevice+ZLPhotoBrowser.swift │ ├── Array+ZLPhotoBrowser.swift │ ├── Bool+ZLPhotoBrowser.swift │ ├── Bundle+ZLPhotoBrowser.swift │ ├── CGFloat+ZLPhotoBrowser.swift │ ├── Cell+ZLPhotoBrowser.swift │ ├── NSError+ZLPhotoBrowser.swift │ ├── PHAsset+ZLPhotoBrowser.swift │ ├── PHPhotoLibrary+ZLPhotoBrowser.swift │ ├── Runtime+ZLPhotoBrowser.swift │ ├── String+ZLPhotoBrowser.swift │ ├── UIColor+ZLPhotoBrowser.swift │ ├── UIFont+ZLPhotoBrowser.swift │ ├── UIGraphicsImageRenderer+ZLPhotoBrowser.swift │ ├── UIImage+ZLPhotoBrowser.swift │ ├── UIScrollView+ZLPhotoBrowser.swift │ ├── UIView+ZLPhotoBrowser.swift │ └── UIViewController+ZLPhotoBrowser.swift ├── General │ ├── ZLAddPhotoCell.swift │ ├── ZLAlbumListCell.swift │ ├── ZLAlbumListController.swift │ ├── ZLAlbumListModel.swift │ ├── ZLAnimationUtils.swift │ ├── ZLCameraCell.swift │ ├── ZLCameraConfiguration.swift │ ├── ZLCollectionViewFlowLayout.swift │ ├── ZLCommonTools.swift │ ├── ZLCustomAlertProtocol.swift │ ├── ZLEditImageConfiguration.swift │ ├── ZLEmbedAlbumListView.swift │ ├── ZLEnlargeButton.swift │ ├── ZLFetchImageOperation.swift │ ├── ZLGeneralDefine.swift │ ├── ZLImageNavController.swift │ ├── ZLImagePreviewController.swift │ ├── ZLLanguageDefine.swift │ ├── ZLNoAuthTipsView.swift │ ├── ZLPhotoBrowser.swift │ ├── ZLPhotoConfiguration+Chaining.swift │ ├── ZLPhotoConfiguration.swift │ ├── ZLPhotoManager.swift │ ├── ZLPhotoModel.swift │ ├── ZLPhotoPicker.swift │ ├── ZLPhotoPreviewCell.swift │ ├── ZLPhotoPreviewController.swift │ ├── ZLPhotoPreviewSheet.swift │ ├── ZLPhotoUIConfiguration+Chaining.swift │ ├── ZLPhotoUIConfiguration.swift │ ├── ZLProgressHUD.swift │ ├── ZLProgressView.swift │ ├── ZLResultModel.swift │ ├── ZLThumbnailPhotoCell.swift │ ├── ZLThumbnailViewController.swift │ ├── ZLVideoManager.swift │ ├── ZLWeakProxy.h │ ├── ZLWeakProxy.m │ └── ZLWeakProxy.swift ├── Info.plist ├── PrivacyInfo.xcprivacy ├── ZLPhotoBrowser.bundle │ ├── ar.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es-419.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── id.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── ja-US.lproj │ │ └── Localizable.strings │ ├── ko.lproj │ │ └── Localizable.strings │ ├── ms.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ └── Localizable.strings │ ├── vi.lproj │ │ └── Localizable.strings │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ ├── zh-Hant.lproj │ │ └── Localizable.strings │ ├── zl_ablumList_arrow@2x.png │ ├── zl_ablumList_arrow@3x.png │ ├── zl_addPhoto@2x.png │ ├── zl_addPhoto@3x.png │ ├── zl_adjust@2x.png │ ├── zl_adjust@3x.png │ ├── zl_adjust_selected@2x.png │ ├── zl_adjust_selected@3x.png │ ├── zl_albumSelect@2x.png │ ├── zl_albumSelect@3x.png │ ├── zl_arrow_down@2x.png │ ├── zl_arrow_down@3x.png │ ├── zl_ashbin@2x.png │ ├── zl_ashbin@3x.png │ ├── zl_ashbin_open@2x.png │ ├── zl_ashbin_open@3x.png │ ├── zl_brightness@2x.png │ ├── zl_brightness@3x.png │ ├── zl_brightness_selected@2x.png │ ├── zl_brightness_selected@3x.png │ ├── zl_btn_original_circle@2x.png │ ├── zl_btn_original_circle@3x.png │ ├── zl_btn_original_selected@2x.png │ ├── zl_btn_original_selected@3x.png │ ├── zl_btn_selected@2x.png │ ├── zl_btn_selected@3x.png │ ├── zl_btn_unselected@2x.png │ ├── zl_btn_unselected@3x.png │ ├── zl_btn_unselected_with_check@2x.png │ ├── zl_btn_unselected_with_check@3x.png │ ├── zl_camera_close@2x.png │ ├── zl_camera_close@3x.png │ ├── zl_clip@2x.png │ ├── zl_clip@3x.png │ ├── zl_close@2x.png │ ├── zl_close@3x.png │ ├── zl_contrast@2x.png │ ├── zl_contrast@3x.png │ ├── zl_contrast_selected@2x.png │ ├── zl_contrast_selected@3x.png │ ├── zl_defaultphoto.png │ ├── zl_downArrow@2x.png │ ├── zl_downArrow@3x.png │ ├── zl_drawLine@2x.png │ ├── zl_drawLine@3x.png │ ├── zl_drawLine_selected@2x.png │ ├── zl_drawLine_selected@3x.png │ ├── zl_editImage_tag@2x.png │ ├── zl_editImage_tag@3x.png │ ├── zl_edit_video_pan_icon@2x.png │ ├── zl_edit_video_pan_icon@3x.png │ ├── zl_eraser@2x.png │ ├── zl_eraser@3x.png │ ├── zl_eraser_circle@2x.png │ ├── zl_eraser_circle@3x.png │ ├── zl_filter@2x.png │ ├── zl_filter@3x.png │ ├── zl_filter_selected@2x.png │ ├── zl_filter_selected@3x.png │ ├── zl_flash_off@2x.png │ ├── zl_flash_off@3x.png │ ├── zl_flash_on@2x.png │ ├── zl_flash_on@3x.png │ ├── zl_focus@2x.png │ ├── zl_focus@3x.png │ ├── zl_imageSticker@2x.png │ ├── zl_imageSticker@3x.png │ ├── zl_input_font@2x.png │ ├── zl_input_font@3x.png │ ├── zl_input_font_bg@2x.png │ ├── zl_input_font_bg@3x.png │ ├── zl_input_font_shadow@2x.png │ ├── zl_input_font_shadow@3x.png │ ├── zl_input_font_stroke@2x.png │ ├── zl_input_font_stroke@3x.png │ ├── zl_livePhoto@2x.png │ ├── zl_livePhoto@3x.png │ ├── zl_loading_dark@2x.png │ ├── zl_loading_dark@3x.png │ ├── zl_loading_light@2x.png │ ├── zl_loading_light@3x.png │ ├── zl_mosaic@2x.png │ ├── zl_mosaic@3x.png │ ├── zl_mosaic_selected@2x.png │ ├── zl_mosaic_selected@3x.png │ ├── zl_navBack@2x.png │ ├── zl_navBack@3x.png │ ├── zl_navClose@2x.png │ ├── zl_navClose@3x.png │ ├── zl_pauseButtonWhite@2x.png │ ├── zl_pauseButtonWhite@3x.png │ ├── zl_playButtonWhite@2x.png │ ├── zl_playButtonWhite@3x.png │ ├── zl_playVideo@2x.png │ ├── zl_playVideo@3x.png │ ├── zl_redo@2x.png │ ├── zl_redo@3x.png │ ├── zl_redo_disable@2x.png │ ├── zl_redo_disable@3x.png │ ├── zl_retake@2x.png │ ├── zl_retake@3x.png │ ├── zl_right@2x.png │ ├── zl_right@3x.png │ ├── zl_right_arrow@2x.png │ ├── zl_right_arrow@3x.png │ ├── zl_rotateimage@2x.png │ ├── zl_rotateimage@3x.png │ ├── zl_saturation@2x.png │ ├── zl_saturation@3x.png │ ├── zl_saturation_selected@2x.png │ ├── zl_saturation_selected@3x.png │ ├── zl_shadow@2x.png │ ├── zl_shadow@3x.png │ ├── zl_takePhoto@2x.png │ ├── zl_takePhoto@3x.png │ ├── zl_textSticker@2x.png │ ├── zl_textSticker@3x.png │ ├── zl_toggle_camera@2x.png │ ├── zl_toggle_camera@3x.png │ ├── zl_undo@2x.png │ ├── zl_undo@3x.png │ ├── zl_undo_disable@2x.png │ ├── zl_undo_disable@3x.png │ ├── zl_video@2x.png │ ├── zl_video@3x.png │ ├── zl_videoLoadFailed@2x.png │ ├── zl_videoLoadFailed@3x.png │ ├── zl_warning@2x.png │ └── zl_warning@3x.png └── ZLPhotoBrowser.h ├── SwiftUIExample ├── SwiftUIExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SwiftUIExample │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── PhotoPicker.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SwiftUIExampleApp.swift ├── Tests ├── LinuxMain.swift └── ZLPhotoBrowserTests │ ├── XCTestManifests.swift │ └── ZLPhotoBrowserTests.swift ├── ZLPhotoBrowser.podspec ├── ZLPhotoBrowser.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── ZLPhotoBrowser.xcscheme └── ZLPhotoBrowser.xcworkspace ├── contents.xcworkspacedata └── xcshareddata └── IDEWorkspaceChecks.plist /.github/ISSUE_TEMPLATE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/.github/ISSUE_TEMPLATE.MD -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/addPhoto.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/addPhoto.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/addPhoto.imageset/addPhoto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/addPhoto.imageset/addPhoto@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/addPhoto.imageset/addPhoto@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/addPhoto.imageset/addPhoto@3x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/close.imageset/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/close.imageset/close@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/close.imageset/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/close.imageset/close@3x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/image1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/image1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/image1.imageset/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/image1.imageset/image1.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/image2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/image2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/image2.imageset/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/image2.imageset/image2.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/image3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/image3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/image3.imageset/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/image3.imageset/image3.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker1.imageset/imageSticker1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker1.imageset/imageSticker1.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker10.imageset/imageSticker10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker10.imageset/imageSticker10.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker11.imageset/imageSticker11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker11.imageset/imageSticker11.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker12.imageset/imageSticker12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker12.imageset/imageSticker12.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker13.imageset/imageSticker13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker13.imageset/imageSticker13.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker14.imageset/imageSticker14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker14.imageset/imageSticker14.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker15.imageset/imageSticker15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker15.imageset/imageSticker15.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker16.imageset/imageSticker16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker16.imageset/imageSticker16.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker17.imageset/imageSticker17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker17.imageset/imageSticker17.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker18.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker18.imageset/imageSticker18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker18.imageset/imageSticker18.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker2.imageset/imageSticker2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker2.imageset/imageSticker2.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker3.imageset/imageSticker3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker3.imageset/imageSticker3.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker4.imageset/imageSticker4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker4.imageset/imageSticker4.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker5.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker5.imageset/imageSticker5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker5.imageset/imageSticker5.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker6.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker6.imageset/imageSticker6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker6.imageset/imageSticker6.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker7.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker7.imageset/imageSticker7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker7.imageset/imageSticker7.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker8.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker8.imageset/imageSticker8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker8.imageset/imageSticker8.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker9.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/imageSticker9.imageset/imageSticker9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/imageSticker9.imageset/imageSticker9.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/playVideo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/playVideo.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/playVideo.imageset/playVideo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/playVideo.imageset/playVideo@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/playVideo.imageset/playVideo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Assets.xcassets/playVideo.imageset/playVideo@3x.png -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/CustomAlert/CustomAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/CustomAlert/CustomAlertController.swift -------------------------------------------------------------------------------- /Example/Example/CustomAlert/CustomAlertControllerTransitionAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/CustomAlert/CustomAlertControllerTransitionAnimation.swift -------------------------------------------------------------------------------- /Example/Example/CustomAlert/ZLCustomAlertAction+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/CustomAlert/ZLCustomAlertAction+Color.swift -------------------------------------------------------------------------------- /Example/Example/Example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Example-Bridging-Header.h -------------------------------------------------------------------------------- /Example/Example/Extension/UIColor+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Extension/UIColor+Hex.swift -------------------------------------------------------------------------------- /Example/Example/ImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/ImageCell.swift -------------------------------------------------------------------------------- /Example/Example/ImageStickerContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/ImageStickerContainerView.swift -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Cache/CacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Cache/CacheSerializer.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Cache/DiskStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Cache/DiskStorage.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Cache/FormatIndicatedCacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Cache/FormatIndicatedCacheSerializer.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Cache/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Cache/ImageCache.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Cache/MemoryStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Cache/MemoryStorage.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Cache/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Cache/Storage.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Extensions/CPListItem+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Extensions/CPListItem+Kingfisher.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Extensions/ImageView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Extensions/ImageView+Kingfisher.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Extensions/NSButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Extensions/NSButton+Kingfisher.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Extensions/NSTextAttachment+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Extensions/NSTextAttachment+Kingfisher.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Extensions/TVMonogramView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Extensions/TVMonogramView+Kingfisher.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Extensions/UIButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Extensions/UIButton+Kingfisher.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Extensions/WKInterfaceImage+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Extensions/WKInterfaceImage+Kingfisher.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/General/ImageSource/AVAssetImageDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/General/ImageSource/AVAssetImageDataProvider.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/General/ImageSource/ImageDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/General/ImageSource/ImageDataProvider.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/General/ImageSource/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/General/ImageSource/Resource.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/General/ImageSource/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/General/ImageSource/Source.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/General/KF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/General/KF.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/General/KFOptionsSetter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/General/KFOptionsSetter.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/General/Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/General/Kingfisher.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/General/KingfisherError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/General/KingfisherError.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/General/KingfisherManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/General/KingfisherManager.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/General/KingfisherOptionsInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/General/KingfisherOptionsInfo.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Image/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Image/Filter.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Image/GIFAnimatedImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Image/GIFAnimatedImage.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Image/GraphicsContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Image/GraphicsContext.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Image/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Image/Image.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Image/ImageDrawing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Image/ImageDrawing.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Image/ImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Image/ImageFormat.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Image/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Image/ImageProcessor.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Image/ImageProgressive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Image/ImageProgressive.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Image/ImageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Image/ImageTransition.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Image/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Image/Placeholder.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/AuthenticationChallengeResponsable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/AuthenticationChallengeResponsable.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/ImageDataProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/ImageDataProcessor.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/ImageDownloader.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/ImageDownloaderDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/ImageDownloaderDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/ImageModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/ImageModifier.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/ImagePrefetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/ImagePrefetcher.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/RedirectHandler.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/RequestModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/RequestModifier.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/RetryStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/RetryStrategy.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/SessionDataTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/SessionDataTask.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Networking/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Networking/SessionDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Utility/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Utility/Box.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Utility/CallbackQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Utility/CallbackQueue.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Utility/Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Utility/Delegate.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Utility/ExtensionHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Utility/ExtensionHelpers.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Utility/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Utility/Result.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Utility/Runtime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Utility/Runtime.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Utility/SizeExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Utility/SizeExtensions.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Utility/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Utility/String+MD5.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Views/AnimatedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Views/AnimatedImageView.swift -------------------------------------------------------------------------------- /Example/Example/Kingfisher/Views/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/Kingfisher/Views/Indicator.swift -------------------------------------------------------------------------------- /Example/Example/LanguagePickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/LanguagePickerView.swift -------------------------------------------------------------------------------- /Example/Example/PhotoConfigureCNViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/PhotoConfigureCNViewController.swift -------------------------------------------------------------------------------- /Example/Example/PhotoConfigureViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/PhotoConfigureViewController.swift -------------------------------------------------------------------------------- /Example/Example/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/Constraint.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintAttributes.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintConfig.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintConstantTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintConstantTarget.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintDSL.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintDescription.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintDirectionalInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintDirectionalInsetTarget.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintDirectionalInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintDirectionalInsets.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintInsetTarget.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintInsets.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintItem.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintLayoutGuide+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintLayoutGuide+Extensions.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintLayoutGuide.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintLayoutGuideDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintLayoutGuideDSL.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintLayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintLayoutSupport.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintLayoutSupportDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintLayoutSupportDSL.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintMaker.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintMakerEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintMakerEditable.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintMakerExtendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintMakerExtendable.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintMakerFinalizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintMakerFinalizable.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintMakerPriortizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintMakerPriortizable.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintMakerRelatable+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintMakerRelatable+Extensions.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintMakerRelatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintMakerRelatable.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintMultiplierTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintMultiplierTarget.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintOffsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintOffsetTarget.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintPriority.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintPriorityTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintPriorityTarget.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintRelatableTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintRelatableTarget.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintRelation.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintView+Extensions.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintView.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/ConstraintViewDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/ConstraintViewDSL.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/Debugging.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/LayoutConstraint.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/LayoutConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/LayoutConstraintItem.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/SnapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/SnapKit.h -------------------------------------------------------------------------------- /Example/Example/SnapKit/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/Typealiases.swift -------------------------------------------------------------------------------- /Example/Example/SnapKit/UILayoutSupport+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/SnapKit/UILayoutSupport+Extensions.swift -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /Example/Example/WeChatMomentDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/WeChatMomentDemoViewController.swift -------------------------------------------------------------------------------- /Example/Example/ZLCustomFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Example/Example/ZLCustomFilter.swift -------------------------------------------------------------------------------- /Example/Example/ar.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/ar.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/de.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/es-419.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/es-419.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/fr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/fr.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/id.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/id.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/it.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/it.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/ja.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/ko.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/ko.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/ms.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/ms.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/nl.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/nl.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/pt-BR.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/pt-BR.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/ru.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/ru.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/tr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/tr.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/vi.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/vi.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/zh-Hant.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Example/Example/zh-Hant.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/README_CN.md -------------------------------------------------------------------------------- /Sources/Animation/ZLClipImageDismissAnimatedTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Animation/ZLClipImageDismissAnimatedTransition.swift -------------------------------------------------------------------------------- /Sources/Animation/ZLImagePreviewDismissInteractiveTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Animation/ZLImagePreviewDismissInteractiveTransition.swift -------------------------------------------------------------------------------- /Sources/Animation/ZLPhotoPreviewAnimatedTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Animation/ZLPhotoPreviewAnimatedTransition.swift -------------------------------------------------------------------------------- /Sources/Animation/ZLPhotoPreviewPopInteractiveTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Animation/ZLPhotoPreviewPopInteractiveTransition.swift -------------------------------------------------------------------------------- /Sources/Animation/ZLThumbnailDismissInteractiveTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Animation/ZLThumbnailDismissInteractiveTransition.swift -------------------------------------------------------------------------------- /Sources/Camera/ZLCustomCamera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Camera/ZLCustomCamera.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLAdjustSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLAdjustSlider.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLBaseStickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLBaseStickerView.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLBaseStickertState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLBaseStickertState.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLClipImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLClipImageViewController.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLClipOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLClipOverlayView.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLEditImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLEditImageViewController.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLEditToolCells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLEditToolCells.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLEditVideoOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLEditVideoOverlayView.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLEditVideoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLEditVideoViewController.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLEditorManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLEditorManager.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLFilter.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLImageStickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLImageStickerView.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLInputTextViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLInputTextViewController.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLPaths.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLPaths.swift -------------------------------------------------------------------------------- /Sources/Edit/ZLTextStickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Edit/ZLTextStickerView.swift -------------------------------------------------------------------------------- /Sources/Extensions/AVCaptureDevice+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/AVCaptureDevice+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/Array+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/Array+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/Bool+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/Bool+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/Bundle+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/Bundle+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/CGFloat+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/CGFloat+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/Cell+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/Cell+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/NSError+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/NSError+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/PHAsset+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/PHAsset+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/PHPhotoLibrary+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/PHPhotoLibrary+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/Runtime+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/Runtime+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/String+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/String+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIColor+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/UIColor+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIFont+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/UIFont+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIGraphicsImageRenderer+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/UIGraphicsImageRenderer+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIImage+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/UIImage+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIScrollView+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/UIScrollView+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIView+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/UIView+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIViewController+ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Extensions/UIViewController+ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/General/ZLAddPhotoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLAddPhotoCell.swift -------------------------------------------------------------------------------- /Sources/General/ZLAlbumListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLAlbumListCell.swift -------------------------------------------------------------------------------- /Sources/General/ZLAlbumListController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLAlbumListController.swift -------------------------------------------------------------------------------- /Sources/General/ZLAlbumListModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLAlbumListModel.swift -------------------------------------------------------------------------------- /Sources/General/ZLAnimationUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLAnimationUtils.swift -------------------------------------------------------------------------------- /Sources/General/ZLCameraCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLCameraCell.swift -------------------------------------------------------------------------------- /Sources/General/ZLCameraConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLCameraConfiguration.swift -------------------------------------------------------------------------------- /Sources/General/ZLCollectionViewFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLCollectionViewFlowLayout.swift -------------------------------------------------------------------------------- /Sources/General/ZLCommonTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLCommonTools.swift -------------------------------------------------------------------------------- /Sources/General/ZLCustomAlertProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLCustomAlertProtocol.swift -------------------------------------------------------------------------------- /Sources/General/ZLEditImageConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLEditImageConfiguration.swift -------------------------------------------------------------------------------- /Sources/General/ZLEmbedAlbumListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLEmbedAlbumListView.swift -------------------------------------------------------------------------------- /Sources/General/ZLEnlargeButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLEnlargeButton.swift -------------------------------------------------------------------------------- /Sources/General/ZLFetchImageOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLFetchImageOperation.swift -------------------------------------------------------------------------------- /Sources/General/ZLGeneralDefine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLGeneralDefine.swift -------------------------------------------------------------------------------- /Sources/General/ZLImageNavController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLImageNavController.swift -------------------------------------------------------------------------------- /Sources/General/ZLImagePreviewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLImagePreviewController.swift -------------------------------------------------------------------------------- /Sources/General/ZLLanguageDefine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLLanguageDefine.swift -------------------------------------------------------------------------------- /Sources/General/ZLNoAuthTipsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLNoAuthTipsView.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoBrowser.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoConfiguration+Chaining.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoConfiguration+Chaining.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoConfiguration.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoManager.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoModel.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoPicker.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoPreviewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoPreviewCell.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoPreviewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoPreviewController.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoPreviewSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoPreviewSheet.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoUIConfiguration+Chaining.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoUIConfiguration+Chaining.swift -------------------------------------------------------------------------------- /Sources/General/ZLPhotoUIConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLPhotoUIConfiguration.swift -------------------------------------------------------------------------------- /Sources/General/ZLProgressHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLProgressHUD.swift -------------------------------------------------------------------------------- /Sources/General/ZLProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLProgressView.swift -------------------------------------------------------------------------------- /Sources/General/ZLResultModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLResultModel.swift -------------------------------------------------------------------------------- /Sources/General/ZLThumbnailPhotoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLThumbnailPhotoCell.swift -------------------------------------------------------------------------------- /Sources/General/ZLThumbnailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLThumbnailViewController.swift -------------------------------------------------------------------------------- /Sources/General/ZLVideoManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLVideoManager.swift -------------------------------------------------------------------------------- /Sources/General/ZLWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLWeakProxy.h -------------------------------------------------------------------------------- /Sources/General/ZLWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLWeakProxy.m -------------------------------------------------------------------------------- /Sources/General/ZLWeakProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/General/ZLWeakProxy.swift -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /Sources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/es-419.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/es-419.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/ja-US.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/ja-US.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_ablumList_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_ablumList_arrow@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_ablumList_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_ablumList_arrow@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_addPhoto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_addPhoto@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_addPhoto@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_addPhoto@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_adjust@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_adjust@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_adjust@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_adjust@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_adjust_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_adjust_selected@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_adjust_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_adjust_selected@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_albumSelect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_albumSelect@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_albumSelect@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_albumSelect@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_arrow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_arrow_down@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_arrow_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_arrow_down@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_ashbin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_ashbin@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_ashbin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_ashbin@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_ashbin_open@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_ashbin_open@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_ashbin_open@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_ashbin_open@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_brightness@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_brightness@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_brightness@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_brightness@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_brightness_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_brightness_selected@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_brightness_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_brightness_selected@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_btn_original_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_btn_original_circle@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_btn_original_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_btn_original_circle@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_btn_original_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_btn_original_selected@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_btn_original_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_btn_original_selected@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_btn_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_btn_selected@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_btn_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_btn_selected@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_btn_unselected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_btn_unselected@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_btn_unselected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_btn_unselected@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_btn_unselected_with_check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_btn_unselected_with_check@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_btn_unselected_with_check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_btn_unselected_with_check@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_camera_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_camera_close@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_camera_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_camera_close@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_clip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_clip@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_clip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_clip@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_close@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_close@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_contrast@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_contrast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_contrast@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_contrast_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_contrast_selected@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_contrast_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_contrast_selected@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_defaultphoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_defaultphoto.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_downArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_downArrow@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_downArrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_downArrow@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_drawLine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_drawLine@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_drawLine@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_drawLine@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_drawLine_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_drawLine_selected@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_drawLine_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_drawLine_selected@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_editImage_tag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_editImage_tag@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_editImage_tag@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_editImage_tag@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_edit_video_pan_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_edit_video_pan_icon@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_edit_video_pan_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_edit_video_pan_icon@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_eraser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_eraser@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_eraser@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_eraser@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_eraser_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_eraser_circle@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_eraser_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_eraser_circle@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_filter@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_filter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_filter@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_filter_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_filter_selected@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_filter_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_filter_selected@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_flash_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_flash_off@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_flash_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_flash_off@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_flash_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_flash_on@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_flash_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_flash_on@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_focus@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_focus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_focus@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_imageSticker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_imageSticker@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_imageSticker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_imageSticker@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_input_font@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_input_font@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_input_font@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_input_font@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_input_font_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_input_font_bg@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_input_font_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_input_font_bg@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_input_font_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_input_font_shadow@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_input_font_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_input_font_shadow@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_input_font_stroke@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_input_font_stroke@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_input_font_stroke@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_input_font_stroke@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_livePhoto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_livePhoto@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_livePhoto@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_livePhoto@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_loading_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_loading_dark@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_loading_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_loading_dark@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_loading_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_loading_light@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_loading_light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_loading_light@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_mosaic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_mosaic@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_mosaic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_mosaic@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_mosaic_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_mosaic_selected@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_mosaic_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_mosaic_selected@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_navBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_navBack@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_navBack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_navBack@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_navClose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_navClose@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_navClose@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_navClose@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_pauseButtonWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_pauseButtonWhite@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_pauseButtonWhite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_pauseButtonWhite@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_playButtonWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_playButtonWhite@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_playButtonWhite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_playButtonWhite@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_playVideo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_playVideo@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_playVideo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_playVideo@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_redo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_redo@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_redo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_redo@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_redo_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_redo_disable@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_redo_disable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_redo_disable@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_retake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_retake@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_retake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_retake@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_right@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_right@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_right_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_right_arrow@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_right_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_right_arrow@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_rotateimage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_rotateimage@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_rotateimage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_rotateimage@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_saturation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_saturation@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_saturation@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_saturation@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_saturation_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_saturation_selected@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_saturation_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_saturation_selected@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_shadow@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_shadow@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_takePhoto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_takePhoto@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_takePhoto@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_takePhoto@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_textSticker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_textSticker@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_textSticker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_textSticker@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_toggle_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_toggle_camera@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_toggle_camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_toggle_camera@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_undo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_undo@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_undo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_undo@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_undo_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_undo_disable@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_undo_disable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_undo_disable@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_video@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_video@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_videoLoadFailed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_videoLoadFailed@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_videoLoadFailed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_videoLoadFailed@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_warning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_warning@2x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.bundle/zl_warning@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.bundle/zl_warning@3x.png -------------------------------------------------------------------------------- /Sources/ZLPhotoBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Sources/ZLPhotoBrowser.h -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/SwiftUIExample/SwiftUIExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/SwiftUIExample/SwiftUIExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/SwiftUIExample/SwiftUIExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/SwiftUIExample/SwiftUIExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/SwiftUIExample/SwiftUIExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/SwiftUIExample/SwiftUIExample/ContentView.swift -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/SwiftUIExample/SwiftUIExample/Info.plist -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/PhotoPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/SwiftUIExample/SwiftUIExample/PhotoPicker.swift -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/SwiftUIExample/SwiftUIExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUIExample/SwiftUIExample/SwiftUIExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/SwiftUIExample/SwiftUIExample/SwiftUIExampleApp.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/ZLPhotoBrowserTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Tests/ZLPhotoBrowserTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/ZLPhotoBrowserTests/ZLPhotoBrowserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/Tests/ZLPhotoBrowserTests/ZLPhotoBrowserTests.swift -------------------------------------------------------------------------------- /ZLPhotoBrowser.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/ZLPhotoBrowser.podspec -------------------------------------------------------------------------------- /ZLPhotoBrowser.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/ZLPhotoBrowser.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZLPhotoBrowser.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/ZLPhotoBrowser.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZLPhotoBrowser.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/ZLPhotoBrowser.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ZLPhotoBrowser.xcodeproj/xcshareddata/xcschemes/ZLPhotoBrowser.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/ZLPhotoBrowser.xcodeproj/xcshareddata/xcschemes/ZLPhotoBrowser.xcscheme -------------------------------------------------------------------------------- /ZLPhotoBrowser.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/ZLPhotoBrowser.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZLPhotoBrowser.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longitachi/ZLPhotoBrowser/HEAD/ZLPhotoBrowser.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist --------------------------------------------------------------------------------