├── README.md ├── ZZPhotoKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── Dev.z.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── Migic_Z.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── Yuan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Dev.z.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── ZZPhotoKit.xcscheme │ │ └── xcschememanagement.plist │ ├── Migic_Z.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── ZZPhotoKit.xcscheme │ │ └── xcschememanagement.plist │ └── Yuan.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── ZZPhotoKit.xcscheme │ └── xcschememanagement.plist ├── ZZPhotoKit ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── .DS_Store │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── PicsCell.h ├── PicsCell.m ├── Resources │ ├── scv1.jpg │ ├── scv2.jpg │ ├── scv3.jpg │ ├── scv4.jpg │ └── scv5.jpg ├── SDWebImage │ ├── .DS_Store │ ├── MKAnnotationView+WebCache.h │ ├── MKAnnotationView+WebCache.m │ ├── NSData+ImageContentType.h │ ├── NSData+ImageContentType.m │ ├── SDImageCache.h │ ├── SDImageCache.m │ ├── SDWebImageCompat.h │ ├── SDWebImageCompat.m │ ├── SDWebImageDecoder.h │ ├── SDWebImageDecoder.m │ ├── SDWebImageDownloader.h │ ├── SDWebImageDownloader.m │ ├── SDWebImageDownloaderOperation.h │ ├── SDWebImageDownloaderOperation.m │ ├── SDWebImageManager.h │ ├── SDWebImageManager.m │ ├── SDWebImageOperation.h │ ├── SDWebImagePrefetcher.h │ ├── SDWebImagePrefetcher.m │ ├── UIButton+WebCache.h │ ├── UIButton+WebCache.m │ ├── UIImage+GIF.h │ ├── UIImage+GIF.m │ ├── UIImage+MultiFormat.h │ ├── UIImage+MultiFormat.m │ ├── UIImage+WebP.h │ ├── UIImage+WebP.m │ ├── UIImageView+HighlightedWebCache.h │ ├── UIImageView+HighlightedWebCache.m │ ├── UIImageView+WebCache.h │ ├── UIImageView+WebCache.m │ ├── UIView+WebCacheOperation.h │ └── UIView+WebCacheOperation.m ├── SVProgressHUD │ └── .DS_Store ├── ViewController.h ├── ViewController.m ├── ZZPhotoKit │ ├── Public │ │ ├── Other │ │ │ ├── ZZAlumAnimation.h │ │ │ └── ZZAlumAnimation.m │ │ ├── Resources │ │ │ ├── back_button_normal.png │ │ │ ├── back_button_normal@2x.png │ │ │ ├── camera_focus_pic.png │ │ │ ├── change_camera_pic.png │ │ │ ├── flash_close_pic.png │ │ │ ├── flash_open_pic.png │ │ │ ├── no_data.png │ │ │ ├── photo_add.png │ │ │ ├── remove_btn_pic.png │ │ │ ├── select_no.png │ │ │ ├── select_yes.png │ │ │ ├── take_photo_pic.png │ │ │ ├── take_photo_pic@2x.png │ │ │ ├── trash_btn_pic.png │ │ │ └── zz_alumb_rightCell.png │ │ └── ZZResourceConfig.h │ ├── ZZBrowser │ │ ├── ZZBrowserPickerCell.h │ │ ├── ZZBrowserPickerCell.m │ │ ├── ZZBrowserPickerViewController.h │ │ ├── ZZBrowserPickerViewController.m │ │ ├── ZZPageControl.h │ │ └── ZZPageControl.m │ ├── ZZCamera │ │ ├── Controller │ │ │ ├── ZZCameraBrowerViewController.h │ │ │ ├── ZZCameraBrowerViewController.m │ │ │ ├── ZZCameraController.h │ │ │ ├── ZZCameraController.m │ │ │ ├── ZZCameraPickerViewController.h │ │ │ └── ZZCameraPickerViewController.m │ │ ├── Model │ │ │ ├── ZZCamera.h │ │ │ └── ZZCamera.m │ │ └── View │ │ │ ├── ZZCameraBrowerCell.h │ │ │ ├── ZZCameraBrowerCell.m │ │ │ ├── ZZCameraFocusView.h │ │ │ ├── ZZCameraFocusView.m │ │ │ ├── ZZCameraPickerCell.h │ │ │ └── ZZCameraPickerCell.m │ ├── ZZPhoto │ │ ├── Controller │ │ │ ├── ZZPhotoBrowerViewController.h │ │ │ ├── ZZPhotoBrowerViewController.m │ │ │ ├── ZZPhotoController.h │ │ │ ├── ZZPhotoController.m │ │ │ ├── ZZPhotoListViewController.h │ │ │ ├── ZZPhotoListViewController.m │ │ │ ├── ZZPhotoPickerViewController.h │ │ │ └── ZZPhotoPickerViewController.m │ │ ├── Model │ │ │ ├── ZZPhoto.h │ │ │ ├── ZZPhoto.m │ │ │ ├── ZZPhotoDatas.h │ │ │ ├── ZZPhotoDatas.m │ │ │ ├── ZZPhotoListModel.h │ │ │ └── ZZPhotoListModel.m │ │ └── View │ │ │ ├── ZZPhotoAlert.h │ │ │ ├── ZZPhotoAlert.m │ │ │ ├── ZZPhotoBrowerCell.h │ │ │ ├── ZZPhotoBrowerCell.m │ │ │ ├── ZZPhotoHud.h │ │ │ ├── ZZPhotoHud.m │ │ │ ├── ZZPhotoListCell.h │ │ │ ├── ZZPhotoListCell.m │ │ │ ├── ZZPhotoPickerCell.h │ │ │ ├── ZZPhotoPickerCell.m │ │ │ ├── ZZPhotoPickerFooterView.h │ │ │ └── ZZPhotoPickerFooterView.m │ └── ZZPhotoKit.h └── main.m ├── ZZPhotoKitTests ├── Info.plist └── ZZPhotoKitTests.m ├── ZZPhotoKitUITests ├── Info.plist └── ZZPhotoKitUITests.m └── image ├── demonstrate.gif ├── examplepic.png ├── object.png ├── privacy_use.png └── zz_camera_intro.jpg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/README.md -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/project.xcworkspace/xcuserdata/Dev.z.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/project.xcworkspace/xcuserdata/Dev.z.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/project.xcworkspace/xcuserdata/Migic_Z.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/project.xcworkspace/xcuserdata/Migic_Z.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/project.xcworkspace/xcuserdata/Yuan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/project.xcworkspace/xcuserdata/Yuan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/xcuserdata/Dev.z.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/xcuserdata/Dev.z.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/xcuserdata/Dev.z.xcuserdatad/xcschemes/ZZPhotoKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/xcuserdata/Dev.z.xcuserdatad/xcschemes/ZZPhotoKit.xcscheme -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/xcuserdata/Dev.z.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/xcuserdata/Dev.z.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/xcuserdata/Migic_Z.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/xcuserdata/Migic_Z.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/xcuserdata/Migic_Z.xcuserdatad/xcschemes/ZZPhotoKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/xcuserdata/Migic_Z.xcuserdatad/xcschemes/ZZPhotoKit.xcscheme -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/xcuserdata/Migic_Z.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/xcuserdata/Migic_Z.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/xcuserdata/Yuan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/xcuserdata/Yuan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/xcuserdata/Yuan.xcuserdatad/xcschemes/ZZPhotoKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/xcuserdata/Yuan.xcuserdatad/xcschemes/ZZPhotoKit.xcscheme -------------------------------------------------------------------------------- /ZZPhotoKit.xcodeproj/xcuserdata/Yuan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit.xcodeproj/xcuserdata/Yuan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ZZPhotoKit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/.DS_Store -------------------------------------------------------------------------------- /ZZPhotoKit/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/AppDelegate.h -------------------------------------------------------------------------------- /ZZPhotoKit/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/AppDelegate.m -------------------------------------------------------------------------------- /ZZPhotoKit/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /ZZPhotoKit/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ZZPhotoKit/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ZZPhotoKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/Info.plist -------------------------------------------------------------------------------- /ZZPhotoKit/PicsCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/PicsCell.h -------------------------------------------------------------------------------- /ZZPhotoKit/PicsCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/PicsCell.m -------------------------------------------------------------------------------- /ZZPhotoKit/Resources/scv1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/Resources/scv1.jpg -------------------------------------------------------------------------------- /ZZPhotoKit/Resources/scv2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/Resources/scv2.jpg -------------------------------------------------------------------------------- /ZZPhotoKit/Resources/scv3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/Resources/scv3.jpg -------------------------------------------------------------------------------- /ZZPhotoKit/Resources/scv4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/Resources/scv4.jpg -------------------------------------------------------------------------------- /ZZPhotoKit/Resources/scv5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/Resources/scv5.jpg -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/.DS_Store -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/MKAnnotationView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/MKAnnotationView+WebCache.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/MKAnnotationView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/MKAnnotationView+WebCache.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIImage+WebP.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /ZZPhotoKit/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /ZZPhotoKit/SVProgressHUD/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/SVProgressHUD/.DS_Store -------------------------------------------------------------------------------- /ZZPhotoKit/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ViewController.h -------------------------------------------------------------------------------- /ZZPhotoKit/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ViewController.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Other/ZZAlumAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Other/ZZAlumAnimation.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Other/ZZAlumAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Other/ZZAlumAnimation.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/back_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/back_button_normal.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/back_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/back_button_normal@2x.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/camera_focus_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/camera_focus_pic.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/change_camera_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/change_camera_pic.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/flash_close_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/flash_close_pic.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/flash_open_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/flash_open_pic.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/no_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/no_data.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/photo_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/photo_add.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/remove_btn_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/remove_btn_pic.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/select_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/select_no.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/select_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/select_yes.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/take_photo_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/take_photo_pic.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/take_photo_pic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/take_photo_pic@2x.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/trash_btn_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/trash_btn_pic.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/Resources/zz_alumb_rightCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/Resources/zz_alumb_rightCell.png -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/Public/ZZResourceConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/Public/ZZResourceConfig.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZBrowserPickerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZBrowserPickerCell.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZBrowserPickerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZBrowserPickerCell.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZBrowserPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZBrowserPickerViewController.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZBrowserPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZBrowserPickerViewController.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZPageControl.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZPageControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZBrowser/ZZPageControl.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraBrowerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraBrowerViewController.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraBrowerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraBrowerViewController.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraController.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraController.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraPickerViewController.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/Controller/ZZCameraPickerViewController.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/Model/ZZCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/Model/ZZCamera.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/Model/ZZCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/Model/ZZCamera.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraBrowerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraBrowerCell.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraBrowerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraBrowerCell.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraFocusView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraFocusView.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraFocusView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraFocusView.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraPickerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraPickerCell.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraPickerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZCamera/View/ZZCameraPickerCell.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoBrowerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoBrowerViewController.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoBrowerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoBrowerViewController.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoController.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoController.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoListViewController.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoListViewController.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoPickerViewController.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Controller/ZZPhotoPickerViewController.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhoto.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhoto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhoto.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhotoDatas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhotoDatas.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhotoDatas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhotoDatas.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhotoListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhotoListModel.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhotoListModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/Model/ZZPhotoListModel.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoAlert.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoAlert.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoBrowerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoBrowerCell.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoBrowerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoBrowerCell.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoHud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoHud.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoHud.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoHud.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoListCell.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoListCell.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoPickerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoPickerCell.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoPickerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoPickerCell.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoPickerFooterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoPickerFooterView.h -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoPickerFooterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhoto/View/ZZPhotoPickerFooterView.m -------------------------------------------------------------------------------- /ZZPhotoKit/ZZPhotoKit/ZZPhotoKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/ZZPhotoKit/ZZPhotoKit.h -------------------------------------------------------------------------------- /ZZPhotoKit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKit/main.m -------------------------------------------------------------------------------- /ZZPhotoKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKitTests/Info.plist -------------------------------------------------------------------------------- /ZZPhotoKitTests/ZZPhotoKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKitTests/ZZPhotoKitTests.m -------------------------------------------------------------------------------- /ZZPhotoKitUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKitUITests/Info.plist -------------------------------------------------------------------------------- /ZZPhotoKitUITests/ZZPhotoKitUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/ZZPhotoKitUITests/ZZPhotoKitUITests.m -------------------------------------------------------------------------------- /image/demonstrate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/image/demonstrate.gif -------------------------------------------------------------------------------- /image/examplepic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/image/examplepic.png -------------------------------------------------------------------------------- /image/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/image/object.png -------------------------------------------------------------------------------- /image/privacy_use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/image/privacy_use.png -------------------------------------------------------------------------------- /image/zz_camera_intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glianze/ZZPhotoKit/HEAD/image/zz_camera_intro.jpg --------------------------------------------------------------------------------