├── .github └── FUNDING.yml ├── .gitignore ├── .swift-version ├── .travis.yml ├── Documentation ├── ADVANCED.md ├── API.md ├── CONFIGURATION.md └── MIGRATION.md ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── TLPhotoPicker.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-TLPhotoPicker_Example │ │ ├── Info.plist │ │ ├── Pods-TLPhotoPicker_Example-Info.plist │ │ ├── Pods-TLPhotoPicker_Example-acknowledgements.markdown │ │ ├── Pods-TLPhotoPicker_Example-acknowledgements.plist │ │ ├── Pods-TLPhotoPicker_Example-dummy.m │ │ ├── Pods-TLPhotoPicker_Example-frameworks.sh │ │ ├── Pods-TLPhotoPicker_Example-resources.sh │ │ ├── Pods-TLPhotoPicker_Example-umbrella.h │ │ ├── Pods-TLPhotoPicker_Example.debug.xcconfig │ │ ├── Pods-TLPhotoPicker_Example.modulemap │ │ └── Pods-TLPhotoPicker_Example.release.xcconfig │ │ └── TLPhotoPicker │ │ ├── Info.plist │ │ ├── ResourceBundle-TLPhotoPicker-Info.plist │ │ ├── ResourceBundle-TLPhotoPicker-TLPhotoPicker-Info.plist │ │ ├── TLPhotoPicker-Info.plist │ │ ├── TLPhotoPicker-dummy.m │ │ ├── TLPhotoPicker-prefix.pch │ │ ├── TLPhotoPicker-umbrella.h │ │ ├── TLPhotoPicker.debug.xcconfig │ │ ├── TLPhotoPicker.modulemap │ │ ├── TLPhotoPicker.release.xcconfig │ │ └── TLPhotoPicker.xcconfig ├── README.md ├── TLPhotoPicker.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── TLPhotoPicker-Example.xcscheme ├── TLPhotoPicker.xcworkspace │ └── contents.xcworkspacedata ├── TLPhotoPicker │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CustomBlackStylePickerViewController.swift │ ├── CustomCameraCell.swift │ ├── CustomCameraCell.xib │ ├── CustomCell_Instagram.swift │ ├── CustomCell_Instagram.xib │ ├── CustomDataSources.swift │ ├── CustomFooterView.swift │ ├── CustomFooterView.xib │ ├── CustomHeaderView.swift │ ├── CustomHeaderView.xib │ ├── CustomPhotoPickerViewController.swift │ ├── ImagePreviewViewController.swift │ ├── ImagePreviewViewController.xib │ ├── Images.xcassets │ │ ├── 100.imageset │ │ │ ├── 100.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83.5@2x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── NotificationIcon@2x.png │ │ │ ├── NotificationIcon@3x.png │ │ │ ├── NotificationIcon~ipad.png │ │ │ └── NotificationIcon~ipad@2x.png │ │ └── Contents.json │ ├── Info.plist │ ├── PhotoCaptureDelegate.swift │ ├── PhotoPickerWithNavigationViewController.swift │ ├── PreviewView.swift │ ├── TLPhotosPicker+Extension.swift │ └── ViewController.swift └── Tests │ ├── Info.plist │ └── Tests.swift ├── Images ├── Privacy.png ├── custom_cameracell.gif ├── customcell.png ├── facebook_ex.gif ├── livephotocell.png ├── photocell.png ├── smartalbum.png ├── tlphotologo.png ├── tlphotopicker_ex.gif └── videophotocell.png ├── LICENSE ├── Package.swift ├── README.md ├── Scripts ├── release-advanced.sh └── release.sh ├── TLPhotoPicker.podspec ├── TLPhotoPicker ├── Assets.xcassets │ ├── Contents.json │ ├── arrow.imageset │ │ ├── Contents.json │ │ └── arrow.png │ ├── camera.imageset │ │ ├── Contents.json │ │ └── camera@3x.png │ ├── insertPhotoMaterial.imageset │ │ ├── Contents.json │ │ └── insertPhotoMaterial@3x.png │ ├── pop_arrow.imageset │ │ ├── Contents.json │ │ └── pop_arrow.png │ └── video.imageset │ │ ├── Contents.json │ │ └── video.png ├── Classes │ ├── .gitkeep │ ├── SynchronizedDictionary.swift │ ├── TLAlbumPopView.swift │ ├── TLAssetCollection+Extension.swift │ ├── TLAssetPreviewViewController.swift │ ├── TLAssetsCollection.swift │ ├── TLBundle.swift │ ├── TLCameraService.swift │ ├── TLCollectionTableViewCell.swift │ ├── TLCollectionTableViewCell.xib │ ├── TLCollectionViewAdapter.swift │ ├── TLPhotoCollectionViewCell.swift │ ├── TLPhotoCollectionViewCell.xib │ ├── TLPhotoLibrary.swift │ ├── TLPhotoLibraryService.swift │ ├── TLPhotoSelectionService.swift │ ├── TLPhotopickerDataSourcesProtocol.swift │ ├── TLPhotosPickerConfigure.swift │ ├── TLPhotosPickerLogDelegate.swift │ ├── TLPhotosPickerState.swift │ ├── TLPhotosPickerViewController.swift │ ├── TLPhotosPickerViewController.xib │ ├── TLPhotosPickerViewControllerDelegate.swift │ ├── TLVideoPlayerService.swift │ └── UIBarButtonItem+Extension.swift ├── Resources │ └── PrivacyInfo.xcprivacy ├── TLBundle+SPM.swift ├── TLPhotoPicker.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── TLPhotoPicker.xcscheme ├── TLPhotoPicker │ ├── Info.plist │ └── TLPhotoPicker.h └── TLPhotoPickerController.bundle │ ├── arrow.png │ ├── camera@3x.png │ ├── insertPhotoMaterial@3x.png │ ├── pop_arrow.png │ └── video.png └── _Pods.xcodeproj /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/.travis.yml -------------------------------------------------------------------------------- /Documentation/ADVANCED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Documentation/ADVANCED.md -------------------------------------------------------------------------------- /Documentation/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Documentation/API.md -------------------------------------------------------------------------------- /Documentation/CONFIGURATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Documentation/CONFIGURATION.md -------------------------------------------------------------------------------- /Documentation/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Documentation/MIGRATION.md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/TLPhotoPicker.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Local Podspecs/TLPhotoPicker.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/Pods-TLPhotoPicker_Example/Pods-TLPhotoPicker_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/ResourceBundle-TLPhotoPicker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/ResourceBundle-TLPhotoPicker-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/ResourceBundle-TLPhotoPicker-TLPhotoPicker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/ResourceBundle-TLPhotoPicker-TLPhotoPicker-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Pods/Target Support Files/TLPhotoPicker/TLPhotoPicker.xcconfig -------------------------------------------------------------------------------- /Example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/README.md -------------------------------------------------------------------------------- /Example/TLPhotoPicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TLPhotoPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TLPhotoPicker.xcodeproj/xcshareddata/xcschemes/TLPhotoPicker-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker.xcodeproj/xcshareddata/xcschemes/TLPhotoPicker-Example.xcscheme -------------------------------------------------------------------------------- /Example/TLPhotoPicker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TLPhotoPicker/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/AppDelegate.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomBlackStylePickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomBlackStylePickerViewController.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomCameraCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomCameraCell.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomCameraCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomCameraCell.xib -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomCell_Instagram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomCell_Instagram.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomCell_Instagram.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomCell_Instagram.xib -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomDataSources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomDataSources.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomFooterView.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomFooterView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomFooterView.xib -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomHeaderView.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomHeaderView.xib -------------------------------------------------------------------------------- /Example/TLPhotoPicker/CustomPhotoPickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/CustomPhotoPickerViewController.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/ImagePreviewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/ImagePreviewViewController.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/ImagePreviewViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/ImagePreviewViewController.xib -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/100.imageset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/100.imageset/100.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/100.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/100.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-72.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/NotificationIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/NotificationIcon@2x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/NotificationIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/NotificationIcon@3x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/AppIcon.appiconset/NotificationIcon~ipad@2x.png -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/TLPhotoPicker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/Info.plist -------------------------------------------------------------------------------- /Example/TLPhotoPicker/PhotoCaptureDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/PhotoCaptureDelegate.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/PhotoPickerWithNavigationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/PhotoPickerWithNavigationViewController.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/PreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/PreviewView.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/TLPhotosPicker+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/TLPhotosPicker+Extension.swift -------------------------------------------------------------------------------- /Example/TLPhotoPicker/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/TLPhotoPicker/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Images/Privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Images/Privacy.png -------------------------------------------------------------------------------- /Images/custom_cameracell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Images/custom_cameracell.gif -------------------------------------------------------------------------------- /Images/customcell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Images/customcell.png -------------------------------------------------------------------------------- /Images/facebook_ex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Images/facebook_ex.gif -------------------------------------------------------------------------------- /Images/livephotocell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Images/livephotocell.png -------------------------------------------------------------------------------- /Images/photocell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Images/photocell.png -------------------------------------------------------------------------------- /Images/smartalbum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Images/smartalbum.png -------------------------------------------------------------------------------- /Images/tlphotologo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Images/tlphotologo.png -------------------------------------------------------------------------------- /Images/tlphotopicker_ex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Images/tlphotopicker_ex.gif -------------------------------------------------------------------------------- /Images/videophotocell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Images/videophotocell.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/release-advanced.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Scripts/release-advanced.sh -------------------------------------------------------------------------------- /Scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/Scripts/release.sh -------------------------------------------------------------------------------- /TLPhotoPicker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker.podspec -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/arrow.imageset/Contents.json -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/arrow.imageset/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/arrow.imageset/arrow.png -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/camera.imageset/Contents.json -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/camera.imageset/camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/camera.imageset/camera@3x.png -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/insertPhotoMaterial.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/insertPhotoMaterial.imageset/Contents.json -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/insertPhotoMaterial.imageset/insertPhotoMaterial@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/insertPhotoMaterial.imageset/insertPhotoMaterial@3x.png -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/pop_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/pop_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/pop_arrow.imageset/pop_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/pop_arrow.imageset/pop_arrow.png -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/video.imageset/Contents.json -------------------------------------------------------------------------------- /TLPhotoPicker/Assets.xcassets/video.imageset/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Assets.xcassets/video.imageset/video.png -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/SynchronizedDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/SynchronizedDictionary.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLAlbumPopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLAlbumPopView.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLAssetCollection+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLAssetCollection+Extension.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLAssetPreviewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLAssetPreviewViewController.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLAssetsCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLAssetsCollection.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLBundle.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLCameraService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLCameraService.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLCollectionTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLCollectionTableViewCell.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLCollectionTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLCollectionTableViewCell.xib -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLCollectionViewAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLCollectionViewAdapter.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotoCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotoCollectionViewCell.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotoCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotoCollectionViewCell.xib -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotoLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotoLibrary.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotoLibraryService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotoLibraryService.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotoSelectionService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotoSelectionService.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotopickerDataSourcesProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotopickerDataSourcesProtocol.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotosPickerConfigure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotosPickerConfigure.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotosPickerLogDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotosPickerLogDelegate.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotosPickerState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotosPickerState.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotosPickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotosPickerViewController.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotosPickerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotosPickerViewController.xib -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLPhotosPickerViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLPhotosPickerViewControllerDelegate.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/TLVideoPlayerService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/TLVideoPlayerService.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Classes/UIBarButtonItem+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Classes/UIBarButtonItem+Extension.swift -------------------------------------------------------------------------------- /TLPhotoPicker/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /TLPhotoPicker/TLBundle+SPM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLBundle+SPM.swift -------------------------------------------------------------------------------- /TLPhotoPicker/TLPhotoPicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLPhotoPicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TLPhotoPicker/TLPhotoPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLPhotoPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TLPhotoPicker/TLPhotoPicker.xcodeproj/xcshareddata/xcschemes/TLPhotoPicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLPhotoPicker.xcodeproj/xcshareddata/xcschemes/TLPhotoPicker.xcscheme -------------------------------------------------------------------------------- /TLPhotoPicker/TLPhotoPicker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLPhotoPicker/Info.plist -------------------------------------------------------------------------------- /TLPhotoPicker/TLPhotoPicker/TLPhotoPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLPhotoPicker/TLPhotoPicker.h -------------------------------------------------------------------------------- /TLPhotoPicker/TLPhotoPickerController.bundle/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLPhotoPickerController.bundle/arrow.png -------------------------------------------------------------------------------- /TLPhotoPicker/TLPhotoPickerController.bundle/camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLPhotoPickerController.bundle/camera@3x.png -------------------------------------------------------------------------------- /TLPhotoPicker/TLPhotoPickerController.bundle/insertPhotoMaterial@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLPhotoPickerController.bundle/insertPhotoMaterial@3x.png -------------------------------------------------------------------------------- /TLPhotoPicker/TLPhotoPickerController.bundle/pop_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLPhotoPickerController.bundle/pop_arrow.png -------------------------------------------------------------------------------- /TLPhotoPicker/TLPhotoPickerController.bundle/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilltue/TLPhotoPicker/HEAD/TLPhotoPicker/TLPhotoPickerController.bundle/video.png -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------