├── .gitignore ├── DZNPhotoPickerController.podspec ├── Docs ├── screenshot_features.png ├── screenshot_services.png └── source │ ├── screenshot_features.psd │ └── screenshot_services.psd ├── Examples ├── PhotoEditor │ ├── PhotoEditor.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── PhotoEditor.xccheckout │ ├── PhotoEditor.xcworkspace │ │ └── contents.xcworkspacedata │ ├── PhotoEditor │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-hd@2x.png │ │ │ │ └── Default@2x.png │ │ │ └── placeholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── placeholder.png │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── Headers │ │ ├── Private │ │ │ └── DZNPhotoPickerController │ │ │ │ ├── DZNPhotoEditorViewController.h │ │ │ │ ├── DZNPhotoPickerControllerConstants.h │ │ │ │ └── UIImagePickerController+Edit.h │ │ └── Public │ │ │ └── DZNPhotoPickerController │ │ │ ├── DZNPhotoEditorViewController.h │ │ │ ├── DZNPhotoPickerControllerConstants.h │ │ │ └── UIImagePickerController+Edit.h │ │ ├── Local Podspecs │ │ └── DZNPhotoPickerController.podspec.json │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── DZNPhotoPickerController.xcscheme │ │ └── Target Support Files │ │ ├── DZNPhotoPickerController │ │ ├── DZNPhotoPickerController-Private.xcconfig │ │ ├── DZNPhotoPickerController-dummy.m │ │ ├── DZNPhotoPickerController-prefix.pch │ │ └── DZNPhotoPickerController.xcconfig │ │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig └── PhotoPicker │ ├── PhotoPicker.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── PhotoPicker.xccheckout │ │ └── Sample.xccheckout │ ├── PhotoPicker.xcworkspace │ └── contents.xcworkspacedata │ ├── PhotoPicker │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-hd@2x.png │ │ │ └── Default@2x.png │ ├── PhotoPicker-Info.plist │ ├── PhotoPicker-Prefix.pch │ ├── Private.h │ ├── RootViewController.h │ ├── RootViewController.m │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFAutoPurgingImageCache.m │ │ ├── AFImageDownloader.h │ │ ├── AFImageDownloader.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m │ ├── DZNEmptyDataSet │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── UIScrollView+EmptyDataSet.h │ │ └── UIScrollView+EmptyDataSet.m │ ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── DZNEmptyDataSet │ │ │ └── UIScrollView+EmptyDataSet.h │ │ ├── DZNPhotoPickerController │ │ │ ├── DZNPhotoCollectionViewLayout.h │ │ │ ├── DZNPhotoDisplayViewCell.h │ │ │ ├── DZNPhotoDisplayViewController.h │ │ │ ├── DZNPhotoEditorViewController.h │ │ │ ├── DZNPhotoMetadata.h │ │ │ ├── DZNPhotoPickerController.h │ │ │ ├── DZNPhotoPickerControllerConstants.h │ │ │ ├── DZNPhotoSearchResultsController.h │ │ │ ├── DZNPhotoServiceClient.h │ │ │ ├── DZNPhotoServiceClientProtocol.h │ │ │ ├── DZNPhotoServiceConstants.h │ │ │ ├── DZNPhotoServiceFactory.h │ │ │ ├── DZNPhotoTag.h │ │ │ └── UIImagePickerController+Edit.h │ │ ├── Kiwi │ │ │ ├── KWAfterAllNode.h │ │ │ ├── KWAfterEachNode.h │ │ │ ├── KWAny.h │ │ │ ├── KWAsyncVerifier.h │ │ │ ├── KWBackgroundTask.h │ │ │ ├── KWBeBetweenMatcher.h │ │ │ ├── KWBeEmptyMatcher.h │ │ │ ├── KWBeIdenticalToMatcher.h │ │ │ ├── KWBeKindOfClassMatcher.h │ │ │ ├── KWBeMemberOfClassMatcher.h │ │ │ ├── KWBeSubclassOfClassMatcher.h │ │ │ ├── KWBeTrueMatcher.h │ │ │ ├── KWBeWithinMatcher.h │ │ │ ├── KWBeZeroMatcher.h │ │ │ ├── KWBeforeAllNode.h │ │ │ ├── KWBeforeEachNode.h │ │ │ ├── KWBlock.h │ │ │ ├── KWBlockNode.h │ │ │ ├── KWBlockRaiseMatcher.h │ │ │ ├── KWCallSite.h │ │ │ ├── KWCaptureSpy.h │ │ │ ├── KWChangeMatcher.h │ │ │ ├── KWConformToProtocolMatcher.h │ │ │ ├── KWContainMatcher.h │ │ │ ├── KWContainStringMatcher.h │ │ │ ├── KWContextNode.h │ │ │ ├── KWCountType.h │ │ │ ├── KWDeviceInfo.h │ │ │ ├── KWEqualMatcher.h │ │ │ ├── KWExample.h │ │ │ ├── KWExampleDelegate.h │ │ │ ├── KWExampleNode.h │ │ │ ├── KWExampleNodeVisitor.h │ │ │ ├── KWExampleSuite.h │ │ │ ├── KWExampleSuiteBuilder.h │ │ │ ├── KWExistVerifier.h │ │ │ ├── KWExpectationType.h │ │ │ ├── KWFailure.h │ │ │ ├── KWFormatter.h │ │ │ ├── KWFutureObject.h │ │ │ ├── KWGenericMatchEvaluator.h │ │ │ ├── KWGenericMatcher.h │ │ │ ├── KWGenericMatchingAdditions.h │ │ │ ├── KWHaveMatcher.h │ │ │ ├── KWHaveValueMatcher.h │ │ │ ├── KWInequalityMatcher.h │ │ │ ├── KWIntercept.h │ │ │ ├── KWInvocationCapturer.h │ │ │ ├── KWItNode.h │ │ │ ├── KWLet.h │ │ │ ├── KWLetNode.h │ │ │ ├── KWMatchVerifier.h │ │ │ ├── KWMatcher.h │ │ │ ├── KWMatcherFactory.h │ │ │ ├── KWMatchers.h │ │ │ ├── KWMatching.h │ │ │ ├── KWMessagePattern.h │ │ │ ├── KWMessageSpying.h │ │ │ ├── KWMessageTracker.h │ │ │ ├── KWMock.h │ │ │ ├── KWNilMatcher.h │ │ │ ├── KWNotificationMatcher.h │ │ │ ├── KWNull.h │ │ │ ├── KWObjCUtilities.h │ │ │ ├── KWPendingNode.h │ │ │ ├── KWProbe.h │ │ │ ├── KWProbePoller.h │ │ │ ├── KWReceiveMatcher.h │ │ │ ├── KWRegisterMatchersNode.h │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ ├── KWReporting.h │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ ├── KWSharedExample.h │ │ │ ├── KWSharedExampleRegistry.h │ │ │ ├── KWSpec.h │ │ │ ├── KWStringContainsMatcher.h │ │ │ ├── KWStringPrefixMatcher.h │ │ │ ├── KWStringUtilities.h │ │ │ ├── KWStub.h │ │ │ ├── KWSuiteConfigurationBase.h │ │ │ ├── KWSymbolicator.h │ │ │ ├── KWUserDefinedMatcher.h │ │ │ ├── KWValue.h │ │ │ ├── KWVerifying.h │ │ │ ├── KWWorkarounds.h │ │ │ ├── Kiwi.h │ │ │ ├── KiwiBlockMacros.h │ │ │ ├── KiwiConfiguration.h │ │ │ ├── KiwiMacros.h │ │ │ ├── NSInvocation+KiwiAdditions.h │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ │ ├── NSNumber+KiwiAdditions.h │ │ │ ├── NSObject+KiwiMockAdditions.h │ │ │ ├── NSObject+KiwiSpyAdditions.h │ │ │ ├── NSObject+KiwiStubAdditions.h │ │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ │ └── NSValue+KiwiAdditions.h │ │ └── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFImageDownloader.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── DZNEmptyDataSet │ │ └── UIScrollView+EmptyDataSet.h │ │ ├── DZNPhotoPickerController │ │ ├── DZNPhotoCollectionViewLayout.h │ │ ├── DZNPhotoDisplayViewCell.h │ │ ├── DZNPhotoDisplayViewController.h │ │ ├── DZNPhotoEditorViewController.h │ │ ├── DZNPhotoMetadata.h │ │ ├── DZNPhotoPickerController.h │ │ ├── DZNPhotoPickerControllerConstants.h │ │ ├── DZNPhotoSearchResultsController.h │ │ ├── DZNPhotoServiceClient.h │ │ ├── DZNPhotoServiceClientProtocol.h │ │ ├── DZNPhotoServiceConstants.h │ │ ├── DZNPhotoServiceFactory.h │ │ ├── DZNPhotoTag.h │ │ ├── UIImagePickerController+Block.h │ │ └── UIImagePickerController+Edit.h │ │ ├── Kiwi │ │ ├── KWAfterAllNode.h │ │ ├── KWAfterEachNode.h │ │ ├── KWAny.h │ │ ├── KWAsyncVerifier.h │ │ ├── KWBackgroundTask.h │ │ ├── KWBeBetweenMatcher.h │ │ ├── KWBeEmptyMatcher.h │ │ ├── KWBeIdenticalToMatcher.h │ │ ├── KWBeKindOfClassMatcher.h │ │ ├── KWBeMemberOfClassMatcher.h │ │ ├── KWBeSubclassOfClassMatcher.h │ │ ├── KWBeTrueMatcher.h │ │ ├── KWBeWithinMatcher.h │ │ ├── KWBeZeroMatcher.h │ │ ├── KWBeforeAllNode.h │ │ ├── KWBeforeEachNode.h │ │ ├── KWBlock.h │ │ ├── KWBlockNode.h │ │ ├── KWBlockRaiseMatcher.h │ │ ├── KWCallSite.h │ │ ├── KWCaptureSpy.h │ │ ├── KWChangeMatcher.h │ │ ├── KWConformToProtocolMatcher.h │ │ ├── KWContainMatcher.h │ │ ├── KWContainStringMatcher.h │ │ ├── KWContextNode.h │ │ ├── KWCountType.h │ │ ├── KWDeviceInfo.h │ │ ├── KWEqualMatcher.h │ │ ├── KWExample.h │ │ ├── KWExampleDelegate.h │ │ ├── KWExampleNode.h │ │ ├── KWExampleNodeVisitor.h │ │ ├── KWExampleSuite.h │ │ ├── KWExampleSuiteBuilder.h │ │ ├── KWExistVerifier.h │ │ ├── KWExpectationType.h │ │ ├── KWFailure.h │ │ ├── KWFormatter.h │ │ ├── KWFutureObject.h │ │ ├── KWGenericMatchEvaluator.h │ │ ├── KWGenericMatcher.h │ │ ├── KWGenericMatchingAdditions.h │ │ ├── KWHaveMatcher.h │ │ ├── KWHaveValueMatcher.h │ │ ├── KWInequalityMatcher.h │ │ ├── KWIntercept.h │ │ ├── KWInvocationCapturer.h │ │ ├── KWItNode.h │ │ ├── KWLet.h │ │ ├── KWLetNode.h │ │ ├── KWMatchVerifier.h │ │ ├── KWMatcher.h │ │ ├── KWMatcherFactory.h │ │ ├── KWMatchers.h │ │ ├── KWMatching.h │ │ ├── KWMessagePattern.h │ │ ├── KWMessageSpying.h │ │ ├── KWMessageTracker.h │ │ ├── KWMock.h │ │ ├── KWNilMatcher.h │ │ ├── KWNotificationMatcher.h │ │ ├── KWNull.h │ │ ├── KWObjCUtilities.h │ │ ├── KWPendingNode.h │ │ ├── KWProbe.h │ │ ├── KWProbePoller.h │ │ ├── KWReceiveMatcher.h │ │ ├── KWRegisterMatchersNode.h │ │ ├── KWRegularExpressionPatternMatcher.h │ │ ├── KWReporting.h │ │ ├── KWRespondToSelectorMatcher.h │ │ ├── KWSharedExample.h │ │ ├── KWSharedExampleRegistry.h │ │ ├── KWSpec.h │ │ ├── KWStringContainsMatcher.h │ │ ├── KWStringPrefixMatcher.h │ │ ├── KWStringUtilities.h │ │ ├── KWStub.h │ │ ├── KWSuiteConfigurationBase.h │ │ ├── KWSymbolicator.h │ │ ├── KWUserDefinedMatcher.h │ │ ├── KWValue.h │ │ ├── KWVerifying.h │ │ ├── KWWorkarounds.h │ │ ├── Kiwi.h │ │ ├── KiwiBlockMacros.h │ │ ├── KiwiConfiguration.h │ │ ├── KiwiMacros.h │ │ ├── NSInvocation+KiwiAdditions.h │ │ ├── NSInvocation+OCMAdditions.h │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ ├── NSNumber+KiwiAdditions.h │ │ ├── NSObject+KiwiMockAdditions.h │ │ ├── NSObject+KiwiSpyAdditions.h │ │ ├── NSObject+KiwiStubAdditions.h │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ └── NSValue+KiwiAdditions.h │ │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ ├── Kiwi │ ├── Classes │ │ ├── Config │ │ │ ├── KWAllTestsSuite.m │ │ │ ├── KWSuiteConfigurationBase.h │ │ │ └── KWSuiteConfigurationBase.m │ │ ├── Core │ │ │ ├── KWAny.h │ │ │ ├── KWAny.m │ │ │ ├── KWBackgroundTask.h │ │ │ ├── KWBackgroundTask.m │ │ │ ├── KWBlock.h │ │ │ ├── KWBlock.m │ │ │ ├── KWCallSite.h │ │ │ ├── KWCallSite.m │ │ │ ├── KWCaptureSpy.h │ │ │ ├── KWCaptureSpy.m │ │ │ ├── KWCountType.h │ │ │ ├── KWDeviceInfo.h │ │ │ ├── KWDeviceInfo.m │ │ │ ├── KWExample.h │ │ │ ├── KWExample.m │ │ │ ├── KWExampleDelegate.h │ │ │ ├── KWExampleNodeVisitor.h │ │ │ ├── KWExampleSuite.h │ │ │ ├── KWExampleSuite.m │ │ │ ├── KWExampleSuiteBuilder.h │ │ │ ├── KWExampleSuiteBuilder.m │ │ │ ├── KWExpectationType.h │ │ │ ├── KWFailure.h │ │ │ ├── KWFailure.m │ │ │ ├── KWFormatter.h │ │ │ ├── KWFormatter.m │ │ │ ├── KWFutureObject.h │ │ │ ├── KWFutureObject.m │ │ │ ├── KWInvocationCapturer.h │ │ │ ├── KWInvocationCapturer.m │ │ │ ├── KWLet.h │ │ │ ├── KWMatcher.h │ │ │ ├── KWMatcher.m │ │ │ ├── KWMatcherFactory.h │ │ │ ├── KWMatcherFactory.m │ │ │ ├── KWMatchers.h │ │ │ ├── KWMatchers.m │ │ │ ├── KWMatching.h │ │ │ ├── KWMessagePattern.h │ │ │ ├── KWMessagePattern.m │ │ │ ├── KWMessageSpying.h │ │ │ ├── KWMessageTracker.h │ │ │ ├── KWMessageTracker.m │ │ │ ├── KWNull.h │ │ │ ├── KWNull.m │ │ │ ├── KWObjCUtilities.h │ │ │ ├── KWObjCUtilities.m │ │ │ ├── KWProbe.h │ │ │ ├── KWProbePoller.h │ │ │ ├── KWProbePoller.m │ │ │ ├── KWReporting.h │ │ │ ├── KWSpec.h │ │ │ ├── KWSpec.m │ │ │ ├── KWStringUtilities.h │ │ │ ├── KWStringUtilities.m │ │ │ ├── KWSymbolicator.h │ │ │ ├── KWSymbolicator.m │ │ │ ├── KWValue.h │ │ │ ├── KWValue.m │ │ │ ├── KWWorkarounds.h │ │ │ ├── KWWorkarounds.m │ │ │ ├── Kiwi.h │ │ │ ├── KiwiBlockMacros.h │ │ │ ├── KiwiConfiguration.h │ │ │ ├── KiwiMacros.h │ │ │ ├── NSInvocation+KiwiAdditions.h │ │ │ ├── NSInvocation+KiwiAdditions.m │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSInvocation+OCMAdditions.m │ │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ │ ├── NSMethodSignature+KiwiAdditions.m │ │ │ ├── NSNumber+KiwiAdditions.h │ │ │ ├── NSNumber+KiwiAdditions.m │ │ │ ├── NSObject+KiwiSpyAdditions.h │ │ │ ├── NSObject+KiwiSpyAdditions.m │ │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ │ ├── NSObject+KiwiVerifierAdditions.m │ │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ │ ├── NSProxy+KiwiVerifierAdditions.m │ │ │ ├── NSValue+KiwiAdditions.h │ │ │ └── NSValue+KiwiAdditions.m │ │ ├── Matchers │ │ │ ├── KWBeBetweenMatcher.h │ │ │ ├── KWBeBetweenMatcher.m │ │ │ ├── KWBeEmptyMatcher.h │ │ │ ├── KWBeEmptyMatcher.m │ │ │ ├── KWBeIdenticalToMatcher.h │ │ │ ├── KWBeIdenticalToMatcher.m │ │ │ ├── KWBeKindOfClassMatcher.h │ │ │ ├── KWBeKindOfClassMatcher.m │ │ │ ├── KWBeMemberOfClassMatcher.h │ │ │ ├── KWBeMemberOfClassMatcher.m │ │ │ ├── KWBeSubclassOfClassMatcher.h │ │ │ ├── KWBeSubclassOfClassMatcher.m │ │ │ ├── KWBeTrueMatcher.h │ │ │ ├── KWBeTrueMatcher.m │ │ │ ├── KWBeWithinMatcher.h │ │ │ ├── KWBeWithinMatcher.m │ │ │ ├── KWBeZeroMatcher.h │ │ │ ├── KWBeZeroMatcher.m │ │ │ ├── KWBlockRaiseMatcher.h │ │ │ ├── KWBlockRaiseMatcher.m │ │ │ ├── KWChangeMatcher.h │ │ │ ├── KWChangeMatcher.m │ │ │ ├── KWConformToProtocolMatcher.h │ │ │ ├── KWConformToProtocolMatcher.m │ │ │ ├── KWContainMatcher.h │ │ │ ├── KWContainMatcher.m │ │ │ ├── KWContainStringMatcher.h │ │ │ ├── KWContainStringMatcher.m │ │ │ ├── KWEqualMatcher.h │ │ │ ├── KWEqualMatcher.m │ │ │ ├── KWGenericMatchEvaluator.h │ │ │ ├── KWGenericMatchEvaluator.m │ │ │ ├── KWGenericMatcher.h │ │ │ ├── KWGenericMatcher.m │ │ │ ├── KWGenericMatchingAdditions.h │ │ │ ├── KWGenericMatchingAdditions.m │ │ │ ├── KWHaveMatcher.h │ │ │ ├── KWHaveMatcher.m │ │ │ ├── KWHaveValueMatcher.h │ │ │ ├── KWHaveValueMatcher.m │ │ │ ├── KWInequalityMatcher.h │ │ │ ├── KWInequalityMatcher.m │ │ │ ├── KWNilMatcher.h │ │ │ ├── KWNilMatcher.m │ │ │ ├── KWNotificationMatcher.h │ │ │ ├── KWNotificationMatcher.m │ │ │ ├── KWReceiveMatcher.h │ │ │ ├── KWReceiveMatcher.m │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ ├── KWRegularExpressionPatternMatcher.m │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ ├── KWRespondToSelectorMatcher.m │ │ │ ├── KWStringContainsMatcher.h │ │ │ ├── KWStringContainsMatcher.m │ │ │ ├── KWStringPrefixMatcher.h │ │ │ ├── KWStringPrefixMatcher.m │ │ │ ├── KWUserDefinedMatcher.h │ │ │ └── KWUserDefinedMatcher.m │ │ ├── Mocking │ │ │ ├── KWMock.h │ │ │ ├── KWMock.m │ │ │ ├── NSObject+KiwiMockAdditions.h │ │ │ └── NSObject+KiwiMockAdditions.m │ │ ├── Nodes │ │ │ ├── KWAfterAllNode.h │ │ │ ├── KWAfterAllNode.m │ │ │ ├── KWAfterEachNode.h │ │ │ ├── KWAfterEachNode.m │ │ │ ├── KWBeforeAllNode.h │ │ │ ├── KWBeforeAllNode.m │ │ │ ├── KWBeforeEachNode.h │ │ │ ├── KWBeforeEachNode.m │ │ │ ├── KWBlockNode.h │ │ │ ├── KWBlockNode.m │ │ │ ├── KWContextNode.h │ │ │ ├── KWContextNode.m │ │ │ ├── KWExampleNode.h │ │ │ ├── KWItNode.h │ │ │ ├── KWItNode.m │ │ │ ├── KWLetNode.h │ │ │ ├── KWLetNode.m │ │ │ ├── KWPendingNode.h │ │ │ ├── KWPendingNode.m │ │ │ ├── KWRegisterMatchersNode.h │ │ │ └── KWRegisterMatchersNode.m │ │ ├── Shared Examples │ │ │ ├── KWSharedExample.h │ │ │ ├── KWSharedExample.m │ │ │ ├── KWSharedExampleRegistry.h │ │ │ └── KWSharedExampleRegistry.m │ │ ├── Stubbing │ │ │ ├── KWIntercept.h │ │ │ ├── KWIntercept.m │ │ │ ├── KWStub.h │ │ │ ├── KWStub.m │ │ │ ├── NSObject+KiwiStubAdditions.h │ │ │ └── NSObject+KiwiStubAdditions.m │ │ └── Verifiers │ │ │ ├── KWAsyncVerifier.h │ │ │ ├── KWAsyncVerifier.m │ │ │ ├── KWExistVerifier.h │ │ │ ├── KWExistVerifier.m │ │ │ ├── KWMatchVerifier.h │ │ │ ├── KWMatchVerifier.m │ │ │ └── KWVerifying.h │ ├── License.txt │ └── Readme.md │ ├── Local Podspecs │ └── DZNPhotoPickerController.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── DZNPhotoPickerController.xcscheme │ ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m │ └── Target Support Files │ ├── AFNetworking │ ├── AFNetworking-Private.xcconfig │ ├── AFNetworking-dummy.m │ ├── AFNetworking-prefix.pch │ └── AFNetworking.xcconfig │ ├── DZNEmptyDataSet │ ├── DZNEmptyDataSet-Private.xcconfig │ ├── DZNEmptyDataSet-dummy.m │ ├── DZNEmptyDataSet-prefix.pch │ └── DZNEmptyDataSet.xcconfig │ ├── DZNPhotoPickerController │ ├── DZNPhotoPickerController-Private.xcconfig │ ├── DZNPhotoPickerController-dummy.m │ ├── DZNPhotoPickerController-prefix.pch │ └── DZNPhotoPickerController.xcconfig │ ├── Kiwi │ ├── Kiwi-Private.xcconfig │ ├── Kiwi-dummy.m │ ├── Kiwi-prefix.pch │ └── Kiwi.xcconfig │ ├── Pods-Tests │ ├── Pods-Tests-acknowledgements.markdown │ ├── Pods-Tests-acknowledgements.plist │ ├── Pods-Tests-dummy.m │ ├── Pods-Tests-resources.sh │ ├── Pods-Tests.debug.xcconfig │ └── Pods-Tests.release.xcconfig │ ├── Pods │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-resources.sh │ ├── Pods.debug.xcconfig │ └── Pods.release.xcconfig │ └── SDWebImage │ ├── SDWebImage-Private.xcconfig │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig ├── LICENSE ├── README.md ├── Source ├── Classes │ ├── Core │ │ ├── DZNPhotoCollectionViewLayout.h │ │ ├── DZNPhotoCollectionViewLayout.m │ │ ├── DZNPhotoDisplayViewCell.h │ │ ├── DZNPhotoDisplayViewCell.m │ │ ├── DZNPhotoDisplayViewController.h │ │ ├── DZNPhotoDisplayViewController.m │ │ ├── DZNPhotoPickerController.h │ │ ├── DZNPhotoPickerController.m │ │ ├── DZNPhotoPickerControllerConstants.h │ │ ├── DZNPhotoPickerControllerConstants.m │ │ ├── DZNPhotoSearchResultsController.h │ │ └── DZNPhotoSearchResultsController.m │ ├── Editor │ │ ├── DZNPhotoEditorViewController.h │ │ ├── DZNPhotoEditorViewController.m │ │ ├── UIImagePickerController+Edit.h │ │ └── UIImagePickerController+Edit.m │ ├── Services │ │ ├── DZNPhotoMetadata.h │ │ ├── DZNPhotoMetadata.m │ │ ├── DZNPhotoServiceClient.h │ │ ├── DZNPhotoServiceClient.m │ │ ├── DZNPhotoServiceClientProtocol.h │ │ ├── DZNPhotoServiceConstants.h │ │ ├── DZNPhotoServiceConstants.m │ │ ├── DZNPhotoServiceFactory.h │ │ ├── DZNPhotoServiceFactory.m │ │ ├── DZNPhotoTag.h │ │ └── DZNPhotoTag.m │ └── UIImagePickerController │ │ ├── UIImagePickerController+Block.h │ │ └── UIImagePickerController+Block.m └── Resources │ └── en.lproj │ └── DZNPhotoPickerController.strings └── Tests ├── Fixtures ├── 500px.json ├── bing.json ├── flickr.json ├── getty_images.json ├── google.json └── instagram.json ├── ParsingTests.m ├── Tests-Info.plist ├── Tests-Prefix.pch └── Utilities ├── TestUtility.h └── TestUtility.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/.gitignore -------------------------------------------------------------------------------- /DZNPhotoPickerController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/DZNPhotoPickerController.podspec -------------------------------------------------------------------------------- /Docs/screenshot_features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Docs/screenshot_features.png -------------------------------------------------------------------------------- /Docs/screenshot_services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Docs/screenshot_services.png -------------------------------------------------------------------------------- /Docs/source/screenshot_features.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Docs/source/screenshot_features.psd -------------------------------------------------------------------------------- /Docs/source/screenshot_services.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Docs/source/screenshot_services.psd -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor.xcodeproj/project.xcworkspace/xcshareddata/PhotoEditor.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor.xcodeproj/project.xcworkspace/xcshareddata/PhotoEditor.xccheckout -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/AppDelegate.h -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/AppDelegate.m -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/Images.xcassets/LaunchImage.launchimage/Default-hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/Images.xcassets/LaunchImage.launchimage/Default-hd@2x.png -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/Images.xcassets/placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/Images.xcassets/placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/Images.xcassets/placeholder.imageset/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/Images.xcassets/placeholder.imageset/placeholder.png -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/Info.plist -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/ViewController.h -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/ViewController.m -------------------------------------------------------------------------------- /Examples/PhotoEditor/PhotoEditor/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/PhotoEditor/main.m -------------------------------------------------------------------------------- /Examples/PhotoEditor/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Podfile -------------------------------------------------------------------------------- /Examples/PhotoEditor/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Podfile.lock -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Editor/DZNPhotoEditorViewController.h -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoPickerControllerConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoPickerControllerConstants.h -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Headers/Private/DZNPhotoPickerController/UIImagePickerController+Edit.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Editor/UIImagePickerController+Edit.h -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Editor/DZNPhotoEditorViewController.h -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoPickerControllerConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoPickerControllerConstants.h -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Headers/Public/DZNPhotoPickerController/UIImagePickerController+Edit.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Editor/UIImagePickerController+Edit.h -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Local Podspecs/DZNPhotoPickerController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Local Podspecs/DZNPhotoPickerController.podspec.json -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Manifest.lock -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Pods.xcodeproj/xcshareddata/xcschemes/DZNPhotoPickerController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Pods.xcodeproj/xcshareddata/xcschemes/DZNPhotoPickerController.xcscheme -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-Private.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-dummy.m -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-prefix.pch -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoEditor/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker.xcodeproj/project.xcworkspace/xcshareddata/PhotoPicker.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker.xcodeproj/project.xcworkspace/xcshareddata/PhotoPicker.xccheckout -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker.xcodeproj/project.xcworkspace/xcshareddata/Sample.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker.xcodeproj/project.xcworkspace/xcshareddata/Sample.xccheckout -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/AppDelegate.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/AppDelegate.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/Images.xcassets/LaunchImage.launchimage/Default-hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/Images.xcassets/LaunchImage.launchimage/Default-hd@2x.png -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/PhotoPicker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/PhotoPicker-Info.plist -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/PhotoPicker-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/PhotoPicker-Prefix.pch -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/Private.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/RootViewController.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/RootViewController.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/PhotoPicker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/PhotoPicker/main.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Podfile -------------------------------------------------------------------------------- /Examples/PhotoPicker/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Podfile.lock -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFImageDownloader.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/DZNEmptyDataSet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/DZNEmptyDataSet/LICENSE -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/DZNEmptyDataSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/DZNEmptyDataSet/README.md -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoCollectionViewLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoCollectionViewLayout.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoDisplayViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoDisplayViewCell.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoDisplayViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoDisplayViewController.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Editor/DZNPhotoEditorViewController.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoMetadata.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoMetadata.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoPickerController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoPickerController.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoPickerControllerConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoPickerControllerConstants.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoSearchResultsController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoSearchResultsController.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoServiceClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoServiceClient.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoServiceClientProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoServiceClientProtocol.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoServiceConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoServiceConstants.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoServiceFactory.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoServiceFactory.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/DZNPhotoTag.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoTag.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/DZNPhotoPickerController/UIImagePickerController+Edit.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Editor/UIImagePickerController+Edit.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWAfterAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWAfterEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWAny.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWAsyncVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBackgroundTask.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWBackgroundTask.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeforeAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBeforeEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBlock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBlockNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWCaptureSpy.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWChangeMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWContainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWContainStringMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWContextNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWCountType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWEqualMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWExample.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWExampleDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWExampleNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWExampleSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWExistVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWExpectationType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWFailure.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWFutureObject.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWGenericMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWHaveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWInequalityMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWIntercept.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWInvocationCapturer.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWItNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWLet.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWLetNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWMatchVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWMatcherFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWMatching.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWMessagePattern.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWMessageSpying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWMessageTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWMock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWNilMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWNotificationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWNull.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWObjCUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWPendingNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWProbe.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWProbePoller.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWReceiveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWReporting.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWSharedExample.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Shared Examples/KWSharedExample.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWSharedExampleRegistry.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWStringUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWStub.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWSymbolicator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWValue.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWVerifying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KWWorkarounds.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/Kiwi.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KiwiBlockMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KiwiConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/KiwiMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/Kiwi/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNEmptyDataSet/UIScrollView+EmptyDataSet.h: -------------------------------------------------------------------------------- 1 | ../../../DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoCollectionViewLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoCollectionViewLayout.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoDisplayViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoDisplayViewCell.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoDisplayViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoDisplayViewController.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Editor/DZNPhotoEditorViewController.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoMetadata.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoMetadata.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoPickerController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoPickerController.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoPickerControllerConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoPickerControllerConstants.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoSearchResultsController.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Core/DZNPhotoSearchResultsController.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoServiceClient.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoServiceClient.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoServiceClientProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoServiceClientProtocol.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoServiceConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoServiceConstants.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoServiceFactory.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoServiceFactory.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/DZNPhotoTag.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Services/DZNPhotoTag.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/UIImagePickerController+Block.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/UIImagePickerController/UIImagePickerController+Block.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/DZNPhotoPickerController/UIImagePickerController+Edit.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Source/Classes/Editor/UIImagePickerController+Edit.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWAfterAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWAfterEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWAny.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWAsyncVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBackgroundTask.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWBackgroundTask.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeforeAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBeforeEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBlock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBlockNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWCaptureSpy.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWChangeMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWContainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWContainStringMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWContextNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWCountType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWEqualMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWExample.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWExampleDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWExampleNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWExampleSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWExistVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWExpectationType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWFailure.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWFutureObject.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWGenericMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWHaveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWInequalityMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWIntercept.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWInvocationCapturer.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWItNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWLet.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWLetNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWMatchVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWMatcherFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWMatching.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWMessagePattern.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWMessageSpying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWMessageTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWMock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWNilMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWNotificationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWNull.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWObjCUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWPendingNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWProbe.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWProbePoller.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWReceiveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWReporting.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWSharedExample.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Shared Examples/KWSharedExample.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWSharedExampleRegistry.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWStringUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWStub.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWSymbolicator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWValue.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWVerifying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KWWorkarounds.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/Kiwi.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KiwiBlockMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KiwiConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/KiwiMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/Kiwi/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Config/KWAllTestsSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Config/KWAllTestsSuite.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWAny.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWAny.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWBackgroundTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWBackgroundTask.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWBackgroundTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWBackgroundTask.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWBlock.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWCallSite.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWCaptureSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWCaptureSpy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWCaptureSpy.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWCountType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWDeviceInfo.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExample.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleSuite.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExpectationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFailure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFailure.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFormatter.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFutureObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFutureObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWFutureObject.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWInvocationCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWInvocationCapturer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWInvocationCapturer.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWLet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatcherFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatcherFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatcherFactory.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatchers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatchers.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMessagePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMessagePattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMessagePattern.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMessageSpying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMessageTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMessageTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWMessageTracker.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWNull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWNull.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWObjCUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWObjCUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWObjCUtilities.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWProbePoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWProbePoller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWProbePoller.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWReporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWSpec.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWStringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWStringUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWStringUtilities.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWSymbolicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWSymbolicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWSymbolicator.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWValue.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWWorkarounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWWorkarounds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KWWorkarounds.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/Kiwi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KiwiBlockMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KiwiConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KiwiMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWContainMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWContainMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWContainMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWNilMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWNilMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWNilMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Mocking/KWMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Mocking/KWMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Mocking/KWMock.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBlockNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBlockNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWBlockNode.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWContextNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWContextNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWContextNode.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWExampleNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWItNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWItNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWItNode.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWLetNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWLetNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWLetNode.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWPendingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWPendingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWPendingNode.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/KWIntercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/KWIntercept.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/KWIntercept.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/KWStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/KWStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/KWStub.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWVerifying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/License.txt -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Kiwi/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Kiwi/Readme.md -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Local Podspecs/DZNPhotoPickerController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Local Podspecs/DZNPhotoPickerController.podspec.json -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Manifest.lock -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Pods.xcodeproj/xcshareddata/xcschemes/DZNPhotoPickerController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Pods.xcodeproj/xcshareddata/xcschemes/DZNPhotoPickerController.xcscheme -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/AFNetworking/AFNetworking-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/AFNetworking/AFNetworking-Private.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-Private.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-dummy.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-prefix.pch -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.xcconfig: -------------------------------------------------------------------------------- 1 | DZNEMPTYDATASET_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-Private.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-dummy.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController-prefix.pch -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/DZNPhotoPickerController/DZNPhotoPickerController.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Kiwi/Kiwi-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Kiwi/Kiwi-Private.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Kiwi/Kiwi-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Kiwi/Kiwi-dummy.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Kiwi/Kiwi-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Kiwi/Kiwi-prefix.pch -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Kiwi/Kiwi.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Kiwi/Kiwi.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/SDWebImage/SDWebImage-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/SDWebImage/SDWebImage-Private.xcconfig -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Examples/PhotoPicker/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Examples/PhotoPicker/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- 1 | SDWEBIMAGE_OTHER_LDFLAGS = -framework "ImageIO" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/README.md -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoCollectionViewLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoCollectionViewLayout.h -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoCollectionViewLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoCollectionViewLayout.m -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoDisplayViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoDisplayViewCell.h -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoDisplayViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoDisplayViewCell.m -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoDisplayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoDisplayViewController.h -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoDisplayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoDisplayViewController.m -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoPickerController.h -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoPickerController.m -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoPickerControllerConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoPickerControllerConstants.h -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoPickerControllerConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoPickerControllerConstants.m -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoSearchResultsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoSearchResultsController.h -------------------------------------------------------------------------------- /Source/Classes/Core/DZNPhotoSearchResultsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Core/DZNPhotoSearchResultsController.m -------------------------------------------------------------------------------- /Source/Classes/Editor/DZNPhotoEditorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Editor/DZNPhotoEditorViewController.h -------------------------------------------------------------------------------- /Source/Classes/Editor/DZNPhotoEditorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Editor/DZNPhotoEditorViewController.m -------------------------------------------------------------------------------- /Source/Classes/Editor/UIImagePickerController+Edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Editor/UIImagePickerController+Edit.h -------------------------------------------------------------------------------- /Source/Classes/Editor/UIImagePickerController+Edit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Editor/UIImagePickerController+Edit.m -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoMetadata.h -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoMetadata.m -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoServiceClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoServiceClient.h -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoServiceClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoServiceClient.m -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoServiceClientProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoServiceClientProtocol.h -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoServiceConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoServiceConstants.h -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoServiceConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoServiceConstants.m -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoServiceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoServiceFactory.h -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoServiceFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoServiceFactory.m -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoTag.h -------------------------------------------------------------------------------- /Source/Classes/Services/DZNPhotoTag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/Services/DZNPhotoTag.m -------------------------------------------------------------------------------- /Source/Classes/UIImagePickerController/UIImagePickerController+Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/UIImagePickerController/UIImagePickerController+Block.h -------------------------------------------------------------------------------- /Source/Classes/UIImagePickerController/UIImagePickerController+Block.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Classes/UIImagePickerController/UIImagePickerController+Block.m -------------------------------------------------------------------------------- /Source/Resources/en.lproj/DZNPhotoPickerController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Source/Resources/en.lproj/DZNPhotoPickerController.strings -------------------------------------------------------------------------------- /Tests/Fixtures/500px.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/Fixtures/500px.json -------------------------------------------------------------------------------- /Tests/Fixtures/bing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/Fixtures/bing.json -------------------------------------------------------------------------------- /Tests/Fixtures/flickr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/Fixtures/flickr.json -------------------------------------------------------------------------------- /Tests/Fixtures/getty_images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/Fixtures/getty_images.json -------------------------------------------------------------------------------- /Tests/Fixtures/google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/Fixtures/google.json -------------------------------------------------------------------------------- /Tests/Fixtures/instagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/Fixtures/instagram.json -------------------------------------------------------------------------------- /Tests/ParsingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/ParsingTests.m -------------------------------------------------------------------------------- /Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Tests/Utilities/TestUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/Utilities/TestUtility.h -------------------------------------------------------------------------------- /Tests/Utilities/TestUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/HEAD/Tests/Utilities/TestUtility.m --------------------------------------------------------------------------------