├── .DS_Store ├── .gitattributes ├── .github └── FUNDING.yml ├── ConvenientImagePicker.podspec ├── ConvenientImagePicker ├── .DS_Store ├── Assets │ ├── .DS_Store │ └── .gitkeep └── Classes │ ├── .DS_Store │ ├── .gitkeep │ ├── PickerCollectionCell.swift │ ├── PickerViewController.swift │ ├── PickerViewDataSource.swift │ ├── PickerViewTitleView.swift │ └── PresentTransition.swift ├── Documentation ├── .DS_Store ├── ConvenientHeader.png ├── ConvenientImagePicker_picture.png ├── Pasted Graphic 1.png ├── Pasted Graphic 2.png ├── TextBoxIconNew.png ├── convenient_badge.svg ├── convenientlogo_badge.png ├── detailview.GIF ├── instance.jpg ├── overview.GIF ├── picture.png ├── picture2.png ├── simpleMode=false.png ├── star_badge.svg ├── star_badge_1.svg ├── starkidstory_badge.svg └── starkidstorylogo_badge.png ├── Example ├── .DS_Store ├── ConvenientImagePicker.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ConvenientImagePicker-Example.xcscheme ├── ConvenientImagePicker.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── land.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── ConvenientImagePicker │ ├── .DS_Store │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── FBSnapshotTestCase │ │ ├── FBSnapshotTestCase │ │ │ ├── Categories │ │ │ │ ├── UIApplication+StrictKeyWindow.h │ │ │ │ ├── UIApplication+StrictKeyWindow.m │ │ │ │ ├── UIImage+Compare.h │ │ │ │ ├── UIImage+Compare.m │ │ │ │ ├── UIImage+Diff.h │ │ │ │ ├── UIImage+Diff.m │ │ │ │ ├── UIImage+Snapshot.h │ │ │ │ └── UIImage+Snapshot.m │ │ │ ├── FBSnapshotTestCase.h │ │ │ ├── FBSnapshotTestCase.m │ │ │ ├── FBSnapshotTestCasePlatform.h │ │ │ ├── FBSnapshotTestCasePlatform.m │ │ │ ├── FBSnapshotTestController.h │ │ │ ├── FBSnapshotTestController.m │ │ │ └── SwiftSupport.swift │ │ ├── LICENSE │ │ └── README.md │ ├── Local Podspecs │ │ └── ConvenientImagePicker.podspec.json │ ├── Manifest.lock │ ├── Nimble-Snapshots │ │ ├── CurrentTestCaseTracker.swift │ │ ├── DynamicSize │ │ │ └── DynamicSizeSnapshot.swift │ │ ├── DynamicType │ │ │ ├── HaveValidDynamicTypeSnapshot.swift │ │ │ ├── NBSMockedApplication.h │ │ │ ├── NBSMockedApplication.m │ │ │ └── PrettyDynamicTypeSyntax.swift │ │ ├── HaveValidSnapshot.swift │ │ ├── LICENSE │ │ ├── PrettySyntax.swift │ │ ├── README.md │ │ ├── XCTestObservationCenter+CurrentTestCaseTracker.h │ │ └── XCTestObservationCenter+CurrentTestCaseTracker.m │ ├── Nimble │ │ ├── Carthage │ │ │ └── Checkouts │ │ │ │ ├── CwlCatchException │ │ │ │ └── Sources │ │ │ │ │ ├── CwlCatchException │ │ │ │ │ └── CwlCatchException.swift │ │ │ │ │ └── CwlCatchExceptionSupport │ │ │ │ │ ├── CwlCatchException.m │ │ │ │ │ └── include │ │ │ │ │ └── CwlCatchException.h │ │ │ │ └── CwlPreconditionTesting │ │ │ │ └── Sources │ │ │ │ ├── CwlMachBadInstructionHandler │ │ │ │ ├── CwlMachBadInstructionHandler.m │ │ │ │ ├── include │ │ │ │ │ └── CwlMachBadInstructionHandler.h │ │ │ │ ├── mach_excServer.c │ │ │ │ └── mach_excServer.h │ │ │ │ └── CwlPreconditionTesting │ │ │ │ ├── CwlBadInstructionException.swift │ │ │ │ ├── CwlCatchBadInstruction.swift │ │ │ │ ├── CwlDarwinDefinitions.swift │ │ │ │ └── Mach │ │ │ │ └── CwlPreconditionTesting.h │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── Nimble │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ ├── NMBExpectation.swift │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ └── NimbleXCTestHandler.swift │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── ExpectationMessage.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── Async.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeVoid.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── ContainElementSatisfying.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── HaveCount.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatchError.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ ├── PostNotification.swift │ │ │ │ ├── Predicate.swift │ │ │ │ ├── RaisesException.swift │ │ │ │ ├── SatisfyAllOf.swift │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ ├── ThrowAssertion.swift │ │ │ │ ├── ThrowError.swift │ │ │ │ └── ToSucceed.swift │ │ │ ├── Nimble.h │ │ │ └── Utils │ │ │ │ ├── Await.swift │ │ │ │ ├── Errors.swift │ │ │ │ ├── Functional.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ │ └── NimbleObjectiveC │ │ │ ├── DSL.h │ │ │ ├── DSL.m │ │ │ ├── NMBExceptionCapture.h │ │ │ ├── NMBExceptionCapture.m │ │ │ ├── NMBStringify.h │ │ │ ├── NMBStringify.m │ │ │ └── XCTestObservationCenter+Register.m │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── land.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── ConvenientImagePicker-ConvenientImagePicker.xcscheme │ │ │ ├── ConvenientImagePicker.xcscheme │ │ │ ├── FBSnapshotTestCase.xcscheme │ │ │ ├── Nimble-Snapshots.xcscheme │ │ │ ├── Nimble.xcscheme │ │ │ ├── Pods-ConvenientImagePicker_Example.xcscheme │ │ │ ├── Pods-ConvenientImagePicker_Tests.xcscheme │ │ │ ├── Quick.xcscheme │ │ │ └── xcschememanagement.plist │ ├── Quick │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── Quick │ │ │ ├── Behavior.swift │ │ │ ├── Callsite.swift │ │ │ ├── Configuration │ │ │ │ └── Configuration.swift │ │ │ ├── DSL │ │ │ │ ├── DSL.swift │ │ │ │ └── World+DSL.swift │ │ │ ├── ErrorUtility.swift │ │ │ ├── Example.swift │ │ │ ├── ExampleGroup.swift │ │ │ ├── ExampleMetadata.swift │ │ │ ├── Filter.swift │ │ │ ├── Hooks │ │ │ │ ├── Closures.swift │ │ │ │ ├── ExampleHooks.swift │ │ │ │ ├── HooksPhase.swift │ │ │ │ └── SuiteHooks.swift │ │ │ ├── NSBundle+CurrentTestBundle.swift │ │ │ ├── NSString+C99ExtendedIdentifier.swift │ │ │ ├── QuickSelectedTestSuiteBuilder.swift │ │ │ ├── QuickTestSuite.swift │ │ │ ├── URL+FileName.swift │ │ │ └── World.swift │ │ │ ├── QuickObjectiveC │ │ │ ├── Configuration │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickConfiguration.m │ │ │ ├── DSL │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── QCKDSL.m │ │ │ │ └── World+DSL.h │ │ │ ├── Quick.h │ │ │ ├── QuickSpec.h │ │ │ ├── QuickSpec.m │ │ │ ├── World.h │ │ │ └── XCTestSuite+QuickTestSuiteBuilder.m │ │ │ └── QuickSpecBase │ │ │ ├── QuickSpecBase.m │ │ │ └── include │ │ │ └── QuickSpecBase.h │ └── Target Support Files │ │ ├── ConvenientImagePicker │ │ ├── ConvenientImagePicker-Info.plist │ │ ├── ConvenientImagePicker-dummy.m │ │ ├── ConvenientImagePicker-prefix.pch │ │ ├── ConvenientImagePicker-umbrella.h │ │ ├── ConvenientImagePicker.modulemap │ │ ├── ConvenientImagePicker.xcconfig │ │ └── ResourceBundle-ConvenientImagePicker-ConvenientImagePicker-Info.plist │ │ ├── FBSnapshotTestCase │ │ ├── FBSnapshotTestCase-Info.plist │ │ ├── FBSnapshotTestCase-dummy.m │ │ ├── FBSnapshotTestCase-prefix.pch │ │ ├── FBSnapshotTestCase-umbrella.h │ │ ├── FBSnapshotTestCase.modulemap │ │ └── FBSnapshotTestCase.xcconfig │ │ ├── Nimble-Snapshots │ │ ├── Nimble-Snapshots-Info.plist │ │ ├── Nimble-Snapshots-dummy.m │ │ ├── Nimble-Snapshots-prefix.pch │ │ ├── Nimble-Snapshots-umbrella.h │ │ ├── Nimble-Snapshots.modulemap │ │ └── Nimble-Snapshots.xcconfig │ │ ├── Nimble │ │ ├── Nimble-Info.plist │ │ ├── Nimble-dummy.m │ │ ├── Nimble-prefix.pch │ │ ├── Nimble-umbrella.h │ │ ├── Nimble.modulemap │ │ └── Nimble.xcconfig │ │ ├── Pods-ConvenientImagePicker_Example │ │ ├── Pods-ConvenientImagePicker_Example-Info.plist │ │ ├── Pods-ConvenientImagePicker_Example-acknowledgements.markdown │ │ ├── Pods-ConvenientImagePicker_Example-acknowledgements.plist │ │ ├── Pods-ConvenientImagePicker_Example-dummy.m │ │ ├── Pods-ConvenientImagePicker_Example-frameworks.sh │ │ ├── Pods-ConvenientImagePicker_Example-umbrella.h │ │ ├── Pods-ConvenientImagePicker_Example.debug.xcconfig │ │ ├── Pods-ConvenientImagePicker_Example.modulemap │ │ └── Pods-ConvenientImagePicker_Example.release.xcconfig │ │ ├── Pods-ConvenientImagePicker_Tests │ │ ├── Pods-ConvenientImagePicker_Tests-Info.plist │ │ ├── Pods-ConvenientImagePicker_Tests-acknowledgements.markdown │ │ ├── Pods-ConvenientImagePicker_Tests-acknowledgements.plist │ │ ├── Pods-ConvenientImagePicker_Tests-dummy.m │ │ ├── Pods-ConvenientImagePicker_Tests-frameworks.sh │ │ ├── Pods-ConvenientImagePicker_Tests-umbrella.h │ │ ├── Pods-ConvenientImagePicker_Tests.debug.xcconfig │ │ ├── Pods-ConvenientImagePicker_Tests.modulemap │ │ └── Pods-ConvenientImagePicker_Tests.release.xcconfig │ │ └── Quick │ │ ├── Quick-Info.plist │ │ ├── Quick-dummy.m │ │ ├── Quick-prefix.pch │ │ ├── Quick-umbrella.h │ │ ├── Quick.modulemap │ │ └── Quick.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── Images ├── .DS_Store ├── Images.xcassets │ ├── .DS_Store │ ├── Contents.json │ └── SelectedImage.imageset │ │ ├── .DS_Store │ │ ├── Contents.json │ │ ├── SelectedImage.png │ │ ├── SelectedImage@2x.png │ │ └── SelectedImage@3x.png ├── SelectedImage.png ├── SelectedImage@2x.png └── SelectedImage@3x.png ├── LICENSE ├── LICENSE.md ├── PresentTransition copy.swift ├── README.md ├── README.zh-cn.md ├── ReleaseNotes.md └── _Pods.xcodeproj /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | custom: https://starkidstory.com/index.php/archives/54/ 3 | -------------------------------------------------------------------------------- /ConvenientImagePicker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/ConvenientImagePicker.podspec -------------------------------------------------------------------------------- /ConvenientImagePicker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/ConvenientImagePicker/.DS_Store -------------------------------------------------------------------------------- /ConvenientImagePicker/Assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/ConvenientImagePicker/Assets/.DS_Store -------------------------------------------------------------------------------- /ConvenientImagePicker/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConvenientImagePicker/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/ConvenientImagePicker/Classes/.DS_Store -------------------------------------------------------------------------------- /ConvenientImagePicker/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConvenientImagePicker/Classes/PickerCollectionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/ConvenientImagePicker/Classes/PickerCollectionCell.swift -------------------------------------------------------------------------------- /ConvenientImagePicker/Classes/PickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/ConvenientImagePicker/Classes/PickerViewController.swift -------------------------------------------------------------------------------- /ConvenientImagePicker/Classes/PickerViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/ConvenientImagePicker/Classes/PickerViewDataSource.swift -------------------------------------------------------------------------------- /ConvenientImagePicker/Classes/PickerViewTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/ConvenientImagePicker/Classes/PickerViewTitleView.swift -------------------------------------------------------------------------------- /ConvenientImagePicker/Classes/PresentTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/ConvenientImagePicker/Classes/PresentTransition.swift -------------------------------------------------------------------------------- /Documentation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/.DS_Store -------------------------------------------------------------------------------- /Documentation/ConvenientHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/ConvenientHeader.png -------------------------------------------------------------------------------- /Documentation/ConvenientImagePicker_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/ConvenientImagePicker_picture.png -------------------------------------------------------------------------------- /Documentation/Pasted Graphic 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/Pasted Graphic 1.png -------------------------------------------------------------------------------- /Documentation/Pasted Graphic 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/Pasted Graphic 2.png -------------------------------------------------------------------------------- /Documentation/TextBoxIconNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/TextBoxIconNew.png -------------------------------------------------------------------------------- /Documentation/convenient_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/convenient_badge.svg -------------------------------------------------------------------------------- /Documentation/convenientlogo_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/convenientlogo_badge.png -------------------------------------------------------------------------------- /Documentation/detailview.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/detailview.GIF -------------------------------------------------------------------------------- /Documentation/instance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/instance.jpg -------------------------------------------------------------------------------- /Documentation/overview.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/overview.GIF -------------------------------------------------------------------------------- /Documentation/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/picture.png -------------------------------------------------------------------------------- /Documentation/picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/picture2.png -------------------------------------------------------------------------------- /Documentation/simpleMode=false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/simpleMode=false.png -------------------------------------------------------------------------------- /Documentation/star_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/star_badge.svg -------------------------------------------------------------------------------- /Documentation/star_badge_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/star_badge_1.svg -------------------------------------------------------------------------------- /Documentation/starkidstory_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/starkidstory_badge.svg -------------------------------------------------------------------------------- /Documentation/starkidstorylogo_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Documentation/starkidstorylogo_badge.png -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/.DS_Store -------------------------------------------------------------------------------- /Example/ConvenientImagePicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ConvenientImagePicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ConvenientImagePicker.xcodeproj/xcshareddata/xcschemes/ConvenientImagePicker-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker.xcodeproj/xcshareddata/xcschemes/ConvenientImagePicker-Example.xcscheme -------------------------------------------------------------------------------- /Example/ConvenientImagePicker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ConvenientImagePicker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ConvenientImagePicker.xcworkspace/xcuserdata/land.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker.xcworkspace/xcuserdata/land.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/ConvenientImagePicker.xcworkspace/xcuserdata/land.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker.xcworkspace/xcuserdata/land.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/ConvenientImagePicker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker/.DS_Store -------------------------------------------------------------------------------- /Example/ConvenientImagePicker/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ConvenientImagePicker/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ConvenientImagePicker/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ConvenientImagePicker/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ConvenientImagePicker/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ConvenientImagePicker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker/Info.plist -------------------------------------------------------------------------------- /Example/ConvenientImagePicker/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/ConvenientImagePicker/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/SwiftSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/SwiftSupport.swift -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/LICENSE -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/FBSnapshotTestCase/README.md -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ConvenientImagePicker.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Local Podspecs/ConvenientImagePicker.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/CurrentTestCaseTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/CurrentTestCaseTracker.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/DynamicSize/DynamicSizeSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/DynamicSize/DynamicSizeSnapshot.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/DynamicType/HaveValidDynamicTypeSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/DynamicType/HaveValidDynamicTypeSnapshot.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/DynamicType/NBSMockedApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/DynamicType/NBSMockedApplication.h -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/DynamicType/NBSMockedApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/DynamicType/NBSMockedApplication.m -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/DynamicType/PrettyDynamicTypeSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/DynamicType/PrettyDynamicTypeSyntax.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/HaveValidSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/HaveValidSnapshot.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/PrettySyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/PrettySyntax.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/README.md -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/XCTestObservationCenter+CurrentTestCaseTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/XCTestObservationCenter+CurrentTestCaseTracker.h -------------------------------------------------------------------------------- /Example/Pods/Nimble-Snapshots/XCTestObservationCenter+CurrentTestCaseTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble-Snapshots/XCTestObservationCenter+CurrentTestCaseTracker.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/README.md -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/ExpectationMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/ExpectationMessage.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Async.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/Predicate.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Matchers/ToSucceed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Matchers/ToSucceed.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Await.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Await.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/ConvenientImagePicker-ConvenientImagePicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/ConvenientImagePicker-ConvenientImagePicker.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/ConvenientImagePicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/ConvenientImagePicker.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/FBSnapshotTestCase.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/FBSnapshotTestCase.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/Nimble-Snapshots.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/Nimble-Snapshots.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/Nimble.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/Nimble.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/Pods-ConvenientImagePicker_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/Pods-ConvenientImagePicker_Example.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/Pods-ConvenientImagePicker_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/Pods-ConvenientImagePicker_Tests.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/Quick.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/Quick.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/land.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/README.md -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Behavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/Behavior.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/Callsite.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ErrorUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/ErrorUtility.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/Example.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/Filter.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/HooksPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/HooksPhase.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/NSString+C99ExtendedIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/NSString+C99ExtendedIdentifier.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/QuickTestSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/QuickTestSuite.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/URL+FileName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/URL+FileName.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/Quick/World.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/DSL/World+DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/World+DSL.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/Quick.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/World.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickSpecBase/QuickSpecBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickSpecBase/QuickSpecBase.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Sources/QuickSpecBase/include/QuickSpecBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Quick/Sources/QuickSpecBase/include/QuickSpecBase.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/ConvenientImagePicker/ConvenientImagePicker.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConvenientImagePicker/ResourceBundle-ConvenientImagePicker-ConvenientImagePicker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/ConvenientImagePicker/ResourceBundle-ConvenientImagePicker-ConvenientImagePicker-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble-Snapshots/Nimble-Snapshots.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Example/Pods-ConvenientImagePicker_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Pods-ConvenientImagePicker_Tests/Pods-ConvenientImagePicker_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Quick/Quick-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Quick/Quick-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Quick/Quick-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Quick/Quick-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Quick/Quick.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Pods/Target Support Files/Quick/Quick.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/.DS_Store -------------------------------------------------------------------------------- /Images/Images.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/Images.xcassets/.DS_Store -------------------------------------------------------------------------------- /Images/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Images/Images.xcassets/SelectedImage.imageset/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/Images.xcassets/SelectedImage.imageset/.DS_Store -------------------------------------------------------------------------------- /Images/Images.xcassets/SelectedImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/Images.xcassets/SelectedImage.imageset/Contents.json -------------------------------------------------------------------------------- /Images/Images.xcassets/SelectedImage.imageset/SelectedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/Images.xcassets/SelectedImage.imageset/SelectedImage.png -------------------------------------------------------------------------------- /Images/Images.xcassets/SelectedImage.imageset/SelectedImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/Images.xcassets/SelectedImage.imageset/SelectedImage@2x.png -------------------------------------------------------------------------------- /Images/Images.xcassets/SelectedImage.imageset/SelectedImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/Images.xcassets/SelectedImage.imageset/SelectedImage@3x.png -------------------------------------------------------------------------------- /Images/SelectedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/SelectedImage.png -------------------------------------------------------------------------------- /Images/SelectedImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/SelectedImage@2x.png -------------------------------------------------------------------------------- /Images/SelectedImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/Images/SelectedImage@3x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PresentTransition copy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/PresentTransition copy.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/README.zh-cn.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloxnu/ConvenientImagePicker/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------