├── .gitignore ├── .swift-version ├── .travis.yml ├── DLFPhotosPicker.podspec ├── DLFPhotosPicker └── Classes │ ├── DLFAssetsLayout.h │ ├── DLFAssetsLayout.m │ ├── DLFConstants.h │ ├── DLFDetailViewController.h │ ├── DLFDetailViewController.m │ ├── DLFMasterViewController.h │ ├── DLFMasterViewController.m │ ├── DLFPhotoCell.h │ ├── DLFPhotoCell.m │ ├── DLFPhotosLibrary.h │ ├── DLFPhotosLibrary.m │ ├── DLFPhotosPickerViewController.h │ ├── DLFPhotosPickerViewController.m │ ├── DLFPhotosSelectionManager.h │ └── DLFPhotosSelectionManager.m ├── Example ├── DLFPhotosPicker.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── DLFPhotosPicker-Example.xcscheme ├── DLFPhotosPicker.xcworkspace │ └── contents.xcworkspacedata ├── DLFPhotosPicker │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DLFAppDelegate.h │ ├── DLFAppDelegate.m │ ├── DLFPhotosPicker-Info.plist │ ├── DLFPhotosPicker-Prefix.pch │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── SampleViewController.h │ ├── SampleViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── DLFPhotosPicker.podspec.json │ ├── Manifest.lock │ ├── OCMock │ │ ├── License.txt │ │ ├── README.md │ │ └── Source │ │ │ └── OCMock │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSInvocation+OCMAdditions.m │ │ │ ├── NSMethodSignature+OCMAdditions.h │ │ │ ├── NSMethodSignature+OCMAdditions.m │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ ├── NSNotificationCenter+OCMAdditions.m │ │ │ ├── NSObject+OCMAdditions.h │ │ │ ├── NSObject+OCMAdditions.m │ │ │ ├── NSValue+OCMAdditions.h │ │ │ ├── NSValue+OCMAdditions.m │ │ │ ├── OCClassMockObject.h │ │ │ ├── OCClassMockObject.m │ │ │ ├── OCMArg.h │ │ │ ├── OCMArg.m │ │ │ ├── OCMArgAction.h │ │ │ ├── OCMArgAction.m │ │ │ ├── OCMBlockArgCaller.h │ │ │ ├── OCMBlockArgCaller.m │ │ │ ├── OCMBlockCaller.h │ │ │ ├── OCMBlockCaller.m │ │ │ ├── OCMBoxedReturnValueProvider.h │ │ │ ├── OCMBoxedReturnValueProvider.m │ │ │ ├── OCMConstraint.h │ │ │ ├── OCMConstraint.m │ │ │ ├── OCMExceptionReturnValueProvider.h │ │ │ ├── OCMExceptionReturnValueProvider.m │ │ │ ├── OCMExpectationRecorder.h │ │ │ ├── OCMExpectationRecorder.m │ │ │ ├── OCMFunctions.h │ │ │ ├── OCMFunctions.m │ │ │ ├── OCMFunctionsPrivate.h │ │ │ ├── OCMIndirectReturnValueProvider.h │ │ │ ├── OCMIndirectReturnValueProvider.m │ │ │ ├── OCMInvocationExpectation.h │ │ │ ├── OCMInvocationExpectation.m │ │ │ ├── OCMInvocationMatcher.h │ │ │ ├── OCMInvocationMatcher.m │ │ │ ├── OCMInvocationStub.h │ │ │ ├── OCMInvocationStub.m │ │ │ ├── OCMLocation.h │ │ │ ├── OCMLocation.m │ │ │ ├── OCMMacroState.h │ │ │ ├── OCMMacroState.m │ │ │ ├── OCMNotificationPoster.h │ │ │ ├── OCMNotificationPoster.m │ │ │ ├── OCMObserverRecorder.h │ │ │ ├── OCMObserverRecorder.m │ │ │ ├── OCMPassByRefSetter.h │ │ │ ├── OCMPassByRefSetter.m │ │ │ ├── OCMRealObjectForwarder.h │ │ │ ├── OCMRealObjectForwarder.m │ │ │ ├── OCMRecorder.h │ │ │ ├── OCMRecorder.m │ │ │ ├── OCMReturnValueProvider.h │ │ │ ├── OCMReturnValueProvider.m │ │ │ ├── OCMStubRecorder.h │ │ │ ├── OCMStubRecorder.m │ │ │ ├── OCMVerifier.h │ │ │ ├── OCMVerifier.m │ │ │ ├── OCMock.h │ │ │ ├── OCMockObject.h │ │ │ ├── OCMockObject.m │ │ │ ├── OCObserverMockObject.h │ │ │ ├── OCObserverMockObject.m │ │ │ ├── OCPartialMockObject.h │ │ │ ├── OCPartialMockObject.m │ │ │ ├── OCProtocolMockObject.h │ │ │ └── OCProtocolMockObject.m │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Target Support Files │ │ ├── DLFPhotosPicker │ │ ├── DLFPhotosPicker-dummy.m │ │ ├── DLFPhotosPicker-prefix.pch │ │ ├── DLFPhotosPicker-umbrella.h │ │ ├── DLFPhotosPicker.modulemap │ │ ├── DLFPhotosPicker.xcconfig │ │ └── Info.plist │ │ ├── OCMock │ │ ├── Info.plist │ │ ├── OCMock-dummy.m │ │ ├── OCMock-prefix.pch │ │ ├── OCMock-umbrella.h │ │ ├── OCMock.modulemap │ │ └── OCMock.xcconfig │ │ ├── Pods-DLFPhotosPicker_Example │ │ ├── Info.plist │ │ ├── Pods-DLFPhotosPicker_Example-acknowledgements.markdown │ │ ├── Pods-DLFPhotosPicker_Example-acknowledgements.plist │ │ ├── Pods-DLFPhotosPicker_Example-dummy.m │ │ ├── Pods-DLFPhotosPicker_Example-frameworks.sh │ │ ├── Pods-DLFPhotosPicker_Example-resources.sh │ │ ├── Pods-DLFPhotosPicker_Example-umbrella.h │ │ ├── Pods-DLFPhotosPicker_Example.debug.xcconfig │ │ ├── Pods-DLFPhotosPicker_Example.modulemap │ │ └── Pods-DLFPhotosPicker_Example.release.xcconfig │ │ └── Pods-DLFPhotosPicker_Tests │ │ ├── Info.plist │ │ ├── Pods-DLFPhotosPicker_Tests-acknowledgements.markdown │ │ ├── Pods-DLFPhotosPicker_Tests-acknowledgements.plist │ │ ├── Pods-DLFPhotosPicker_Tests-dummy.m │ │ ├── Pods-DLFPhotosPicker_Tests-frameworks.sh │ │ ├── Pods-DLFPhotosPicker_Tests-resources.sh │ │ ├── Pods-DLFPhotosPicker_Tests-umbrella.h │ │ ├── Pods-DLFPhotosPicker_Tests.debug.xcconfig │ │ ├── Pods-DLFPhotosPicker_Tests.modulemap │ │ └── Pods-DLFPhotosPicker_Tests.release.xcconfig └── Tests │ ├── PhotosPickerTests.m │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md ├── _Pods.xcodeproj ├── appetizerkey.gpg ├── fastlane ├── Appfile ├── Fastfile ├── README.md └── actions │ └── ensure_pod_trunk_session.rb ├── keyrings └── live │ ├── blackbox-admins.txt │ ├── blackbox-files.txt │ ├── pubring.gpg │ └── trustdb.gpg └── screenshots ├── iOS Simulator Screen Shot Nov 30, 2014, 09.38.27.png ├── iOS Simulator Screen Shot Nov 30, 2014, 09.38.34.png ├── iOS Simulator Screen Shot Nov 30, 2014, 09.38.58.png ├── iOS Simulator Screen Shot Nov 30, 2014, 09.39.04.png ├── screenshot1.png ├── screenshot2.png ├── screenshot3.png └── screenshot4.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 2.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/.travis.yml -------------------------------------------------------------------------------- /DLFPhotosPicker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker.podspec -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFAssetsLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFAssetsLayout.h -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFAssetsLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFAssetsLayout.m -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFConstants.h -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFDetailViewController.h -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFDetailViewController.m -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFMasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFMasterViewController.h -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFMasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFMasterViewController.m -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFPhotoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFPhotoCell.h -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFPhotoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFPhotoCell.m -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFPhotosLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFPhotosLibrary.h -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFPhotosLibrary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFPhotosLibrary.m -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFPhotosPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFPhotosPickerViewController.h -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFPhotosPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFPhotosPickerViewController.m -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFPhotosSelectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFPhotosSelectionManager.h -------------------------------------------------------------------------------- /DLFPhotosPicker/Classes/DLFPhotosSelectionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/DLFPhotosPicker/Classes/DLFPhotosSelectionManager.m -------------------------------------------------------------------------------- /Example/DLFPhotosPicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/DLFPhotosPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DLFPhotosPicker.xcodeproj/xcshareddata/xcschemes/DLFPhotosPicker-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker.xcodeproj/xcshareddata/xcschemes/DLFPhotosPicker-Example.xcscheme -------------------------------------------------------------------------------- /Example/DLFPhotosPicker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/DLFAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker/DLFAppDelegate.h -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/DLFAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker/DLFAppDelegate.m -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/DLFPhotosPicker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker/DLFPhotosPicker-Info.plist -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/DLFPhotosPicker-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker/DLFPhotosPicker-Prefix.pch -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/SampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker/SampleViewController.h -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/SampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker/SampleViewController.m -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/DLFPhotosPicker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/DLFPhotosPicker/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/DLFPhotosPicker.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Local Podspecs/DLFPhotosPicker.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/OCMock/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/License.txt -------------------------------------------------------------------------------- /Example/Pods/OCMock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/README.md -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCClassMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCClassMockObject.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMArg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMArg.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMArgAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMArgAction.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMArgAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMArgAction.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMBlockArgCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMBlockArgCaller.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMBlockArgCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMBlockArgCaller.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMBlockCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMBlockCaller.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMConstraint.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMFunctions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMFunctionsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMFunctionsPrivate.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationStub.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMLocation.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMMacroState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMMacroState.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMRecorder.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMStubRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMStubRecorder.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMVerifier.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCMockObject.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCObserverMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCObserverMockObject.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCPartialMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCPartialMockObject.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DLFPhotosPicker/DLFPhotosPicker-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/DLFPhotosPicker/DLFPhotosPicker-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DLFPhotosPicker/DLFPhotosPicker-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/DLFPhotosPicker/DLFPhotosPicker-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DLFPhotosPicker/DLFPhotosPicker-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/DLFPhotosPicker/DLFPhotosPicker-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DLFPhotosPicker/DLFPhotosPicker.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/DLFPhotosPicker/DLFPhotosPicker.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DLFPhotosPicker/DLFPhotosPicker.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/DLFPhotosPicker/DLFPhotosPicker.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DLFPhotosPicker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/DLFPhotosPicker/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OCMock/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/OCMock/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OCMock/OCMock-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/OCMock/OCMock-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OCMock/OCMock-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/OCMock/OCMock-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OCMock/OCMock-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/OCMock/OCMock-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OCMock/OCMock.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/OCMock/OCMock.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OCMock/OCMock.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/OCMock/OCMock.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Example/Pods-DLFPhotosPicker_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Pods/Target Support Files/Pods-DLFPhotosPicker_Tests/Pods-DLFPhotosPicker_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/PhotosPickerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Tests/PhotosPickerTests.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /appetizerkey.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/appetizerkey.gpg -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/actions/ensure_pod_trunk_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/fastlane/actions/ensure_pod_trunk_session.rb -------------------------------------------------------------------------------- /keyrings/live/blackbox-admins.txt: -------------------------------------------------------------------------------- 1 | nico@delightfuldev.com 2 | -------------------------------------------------------------------------------- /keyrings/live/blackbox-files.txt: -------------------------------------------------------------------------------- 1 | appetizerkey 2 | -------------------------------------------------------------------------------- /keyrings/live/pubring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/keyrings/live/pubring.gpg -------------------------------------------------------------------------------- /keyrings/live/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/keyrings/live/trustdb.gpg -------------------------------------------------------------------------------- /screenshots/iOS Simulator Screen Shot Nov 30, 2014, 09.38.27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/screenshots/iOS Simulator Screen Shot Nov 30, 2014, 09.38.27.png -------------------------------------------------------------------------------- /screenshots/iOS Simulator Screen Shot Nov 30, 2014, 09.38.34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/screenshots/iOS Simulator Screen Shot Nov 30, 2014, 09.38.34.png -------------------------------------------------------------------------------- /screenshots/iOS Simulator Screen Shot Nov 30, 2014, 09.38.58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/screenshots/iOS Simulator Screen Shot Nov 30, 2014, 09.38.58.png -------------------------------------------------------------------------------- /screenshots/iOS Simulator Screen Shot Nov 30, 2014, 09.39.04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/screenshots/iOS Simulator Screen Shot Nov 30, 2014, 09.39.04.png -------------------------------------------------------------------------------- /screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/screenshots/screenshot1.png -------------------------------------------------------------------------------- /screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/screenshots/screenshot2.png -------------------------------------------------------------------------------- /screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/screenshots/screenshot3.png -------------------------------------------------------------------------------- /screenshots/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicnocquee/DLFPhotosPicker/HEAD/screenshots/screenshot4.png --------------------------------------------------------------------------------