gitextract_nmz_btnz/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── -------.md │ ├── ----.md │ └── --bug.md ├── .gitignore ├── .swiftpm/ │ └── xcode/ │ └── package.xcworkspace/ │ └── contents.xcworkspacedata ├── LICENSE ├── Package.swift ├── README.md ├── TZImagePickerController/ │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets/ │ │ ├── AlbumAddBtn.imageset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── back.imageset/ │ │ │ └── Contents.json │ │ ├── leftVideoEdit.imageset/ │ │ │ └── Contents.json │ │ ├── photo_delete.imageset/ │ │ │ └── Contents.json │ │ └── rightVideoEdit.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── FLAnimatedImage/ │ │ ├── FLAnimatedImage.h │ │ ├── FLAnimatedImage.m │ │ ├── FLAnimatedImageView.h │ │ └── FLAnimatedImageView.m │ ├── Info.plist │ ├── Location/ │ │ ├── TZLocationManager.h │ │ └── TZLocationManager.m │ ├── LxGridViewFlowLayout.h │ ├── LxGridViewFlowLayout.m │ ├── Resources/ │ │ └── TZImagePickerController.bundle/ │ │ ├── ar.lproj/ │ │ │ └── Localizable.strings │ │ ├── de.lproj/ │ │ │ └── Localizable.strings │ │ ├── en.lproj/ │ │ │ └── Localizable.strings │ │ ├── es.lproj/ │ │ │ └── Localizable.strings │ │ ├── fr.lproj/ │ │ │ └── Localizable.strings │ │ ├── ja.lproj/ │ │ │ └── Localizable.strings │ │ ├── ko-KP.lproj/ │ │ │ └── Localizable.strings │ │ ├── pt.lproj/ │ │ │ └── Localizable.strings │ │ ├── ru.lproj/ │ │ │ └── Localizable.strings │ │ ├── vi.lproj/ │ │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj/ │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj/ │ │ └── Localizable.strings │ ├── TZImagePickerController/ │ │ ├── NSBundle+TZImagePicker.h │ │ ├── NSBundle+TZImagePicker.m │ │ ├── TZAssetCell.h │ │ ├── TZAssetCell.m │ │ ├── TZAssetModel.h │ │ ├── TZAssetModel.m │ │ ├── TZAuthLimitedFooterTipView.h │ │ ├── TZAuthLimitedFooterTipView.m │ │ ├── TZGifPhotoPreviewController.h │ │ ├── TZGifPhotoPreviewController.m │ │ ├── TZImageCropManager.h │ │ ├── TZImageCropManager.m │ │ ├── TZImageManager.h │ │ ├── TZImageManager.m │ │ ├── TZImagePickerController.h │ │ ├── TZImagePickerController.m │ │ ├── TZImageRequestOperation.h │ │ ├── TZImageRequestOperation.m │ │ ├── TZPhotoPickerController.h │ │ ├── TZPhotoPickerController.m │ │ ├── TZPhotoPreviewCell.h │ │ ├── TZPhotoPreviewCell.m │ │ ├── TZPhotoPreviewController.h │ │ ├── TZPhotoPreviewController.m │ │ ├── TZProgressView.h │ │ ├── TZProgressView.m │ │ ├── TZVideoCropController.h │ │ ├── TZVideoCropController.m │ │ ├── TZVideoEditedPreviewController.h │ │ ├── TZVideoEditedPreviewController.m │ │ ├── TZVideoPlayerController.h │ │ ├── TZVideoPlayerController.m │ │ ├── UIView+TZLayout.h │ │ └── UIView+TZLayout.m │ ├── TZImageUploadOperation.h │ ├── TZImageUploadOperation.m │ ├── TZTestCell.h │ ├── TZTestCell.m │ ├── ViewController.h │ ├── ViewController.m │ ├── ar-001.lproj/ │ │ ├── LaunchScreen.strings │ │ ├── Localizable.strings │ │ └── Main.strings │ ├── main.m │ ├── tz-ru.lproj/ │ │ └── Localizable.strings │ └── zh-Hans.lproj/ │ ├── LaunchScreen.strings │ └── Main.strings ├── TZImagePickerController.podspec ├── TZImagePickerController.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ └── TZImagePickerControllerFramework.xcscheme ├── TZImagePickerControllerFramework/ │ ├── Info.plist │ └── PrivacyInfo.xcprivacy ├── TZImagePickerControllerTests/ │ ├── Info.plist │ └── TZImagePickerControllerTests.m └── TZImagePickerControllerUITests/ ├── Info.plist └── TZImagePickerControllerUITests.m