├── .gitignore ├── .travis.yml ├── Example ├── LaunchScreen.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── LaunchScreen.xcscheme ├── LaunchScreen.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── LaunchScreen.xccheckout ├── LaunchScreen │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Launch Screen.xib │ ├── LaunchScreen-Info.plist │ ├── LaunchScreen-Prefix.pch │ ├── Main.storyboard │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Public │ │ │ ├── LaunchScreen │ │ │ └── LaunchScreenViewController.h │ │ │ └── OCMock │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ ├── OCMArg.h │ │ │ ├── OCMConstraint.h │ │ │ ├── OCMLocation.h │ │ │ ├── OCMMacroState.h │ │ │ ├── OCMRecorder.h │ │ │ ├── OCMStubRecorder.h │ │ │ ├── OCMock.h │ │ │ └── OCMockObject.h │ ├── Local Podspecs │ │ └── LaunchScreen.podspec │ ├── Manifest.lock │ ├── OCMock │ │ ├── README.md │ │ └── Source │ │ │ ├── License.txt │ │ │ └── OCMock │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSInvocation+OCMAdditions.m │ │ │ ├── NSMethodSignature+OCMAdditions.h │ │ │ ├── NSMethodSignature+OCMAdditions.m │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ ├── NSNotificationCenter+OCMAdditions.m │ │ │ ├── NSObject+OCMAdditions.h │ │ │ ├── NSObject+OCMAdditions.m │ │ │ ├── NSValue+OCMAdditions.h │ │ │ ├── NSValue+OCMAdditions.m │ │ │ ├── OCClassMockObject.h │ │ │ ├── OCClassMockObject.m │ │ │ ├── OCMArg.h │ │ │ ├── OCMArg.m │ │ │ ├── OCMBlockCaller.h │ │ │ ├── OCMBlockCaller.m │ │ │ ├── OCMBoxedReturnValueProvider.h │ │ │ ├── OCMBoxedReturnValueProvider.m │ │ │ ├── OCMConstraint.h │ │ │ ├── OCMConstraint.m │ │ │ ├── OCMExceptionReturnValueProvider.h │ │ │ ├── OCMExceptionReturnValueProvider.m │ │ │ ├── OCMExpectationRecorder.h │ │ │ ├── OCMExpectationRecorder.m │ │ │ ├── OCMFunctions.h │ │ │ ├── OCMFunctions.m │ │ │ ├── OCMIndirectReturnValueProvider.h │ │ │ ├── OCMIndirectReturnValueProvider.m │ │ │ ├── OCMInvocationExpectation.h │ │ │ ├── OCMInvocationExpectation.m │ │ │ ├── OCMInvocationMatcher.h │ │ │ ├── OCMInvocationMatcher.m │ │ │ ├── OCMInvocationStub.h │ │ │ ├── OCMInvocationStub.m │ │ │ ├── OCMLocation.h │ │ │ ├── OCMLocation.m │ │ │ ├── OCMMacroState.h │ │ │ ├── OCMMacroState.m │ │ │ ├── OCMNotificationPoster.h │ │ │ ├── OCMNotificationPoster.m │ │ │ ├── OCMObserverRecorder.h │ │ │ ├── OCMObserverRecorder.m │ │ │ ├── OCMPassByRefSetter.h │ │ │ ├── OCMPassByRefSetter.m │ │ │ ├── OCMRealObjectForwarder.h │ │ │ ├── OCMRealObjectForwarder.m │ │ │ ├── OCMRecorder.h │ │ │ ├── OCMRecorder.m │ │ │ ├── OCMReturnValueProvider.h │ │ │ ├── OCMReturnValueProvider.m │ │ │ ├── OCMStubRecorder.h │ │ │ ├── OCMStubRecorder.m │ │ │ ├── OCMVerifier.h │ │ │ ├── OCMVerifier.m │ │ │ ├── OCMock.h │ │ │ ├── OCMockObject.h │ │ │ ├── OCMockObject.m │ │ │ ├── OCObserverMockObject.h │ │ │ ├── OCObserverMockObject.m │ │ │ ├── OCPartialMockObject.h │ │ │ ├── OCPartialMockObject.m │ │ │ ├── OCProtocolMockObject.h │ │ │ └── OCProtocolMockObject.m │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-LaunchScreen-LaunchScreen │ │ ├── Pods-LaunchScreen-LaunchScreen-Private.xcconfig │ │ ├── Pods-LaunchScreen-LaunchScreen-dummy.m │ │ ├── Pods-LaunchScreen-LaunchScreen-prefix.pch │ │ └── Pods-LaunchScreen-LaunchScreen.xcconfig │ │ ├── Pods-LaunchScreen │ │ ├── Pods-LaunchScreen-acknowledgements.markdown │ │ ├── Pods-LaunchScreen-acknowledgements.plist │ │ ├── Pods-LaunchScreen-dummy.m │ │ ├── Pods-LaunchScreen-environment.h │ │ ├── Pods-LaunchScreen-resources.sh │ │ ├── Pods-LaunchScreen.debug.xcconfig │ │ └── Pods-LaunchScreen.release.xcconfig │ │ ├── Pods-Tests-OCMock │ │ ├── Pods-Tests-OCMock-Private.xcconfig │ │ ├── Pods-Tests-OCMock-dummy.m │ │ ├── Pods-Tests-OCMock-prefix.pch │ │ └── Pods-Tests-OCMock.xcconfig │ │ └── Pods-Tests │ │ ├── Pods-Tests-acknowledgements.markdown │ │ ├── Pods-Tests-acknowledgements.plist │ │ ├── Pods-Tests-dummy.m │ │ ├── Pods-Tests-environment.h │ │ ├── Pods-Tests-resources.sh │ │ ├── Pods-Tests.debug.xcconfig │ │ └── Pods-Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── LaunchScreen.podspec ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── LaunchScreenViewController.h │ └── LaunchScreenViewController.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/LaunchScreen.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/LaunchScreen.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LaunchScreen.xcodeproj/xcshareddata/xcschemes/LaunchScreen.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen.xcodeproj/xcshareddata/xcschemes/LaunchScreen.xcscheme -------------------------------------------------------------------------------- /Example/LaunchScreen.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LaunchScreen.xcworkspace/xcshareddata/LaunchScreen.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen.xcworkspace/xcshareddata/LaunchScreen.xccheckout -------------------------------------------------------------------------------- /Example/LaunchScreen/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen/AppDelegate.h -------------------------------------------------------------------------------- /Example/LaunchScreen/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen/AppDelegate.m -------------------------------------------------------------------------------- /Example/LaunchScreen/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/LaunchScreen/Launch Screen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen/Launch Screen.xib -------------------------------------------------------------------------------- /Example/LaunchScreen/LaunchScreen-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen/LaunchScreen-Info.plist -------------------------------------------------------------------------------- /Example/LaunchScreen/LaunchScreen-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen/LaunchScreen-Prefix.pch -------------------------------------------------------------------------------- /Example/LaunchScreen/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen/Main.storyboard -------------------------------------------------------------------------------- /Example/LaunchScreen/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen/ViewController.h -------------------------------------------------------------------------------- /Example/LaunchScreen/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen/ViewController.m -------------------------------------------------------------------------------- /Example/LaunchScreen/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/LaunchScreen/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/LaunchScreen/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/LaunchScreen/LaunchScreenViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LaunchScreenViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LaunchScreen.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Local Podspecs/LaunchScreen.podspec -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/OCMock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/README.md -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/License.txt -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCClassMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCClassMockObject.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMArg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMArg.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMBlockCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMBlockCaller.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMConstraint.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMFunctions.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMInvocationStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMInvocationStub.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMLocation.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMMacroState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMMacroState.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMRecorder.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMStubRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMStubRecorder.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMVerifier.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCMockObject.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCObserverMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCObserverMockObject.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCPartialMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCPartialMockObject.m -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen-LaunchScreen/Pods-LaunchScreen-LaunchScreen-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-LaunchScreen-LaunchScreen/Pods-LaunchScreen-LaunchScreen-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen-LaunchScreen/Pods-LaunchScreen-LaunchScreen-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-LaunchScreen-LaunchScreen/Pods-LaunchScreen-LaunchScreen-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen-LaunchScreen/Pods-LaunchScreen-LaunchScreen-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-LaunchScreen-LaunchScreen/Pods-LaunchScreen-LaunchScreen-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen-LaunchScreen/Pods-LaunchScreen-LaunchScreen.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-LaunchScreen/Pods-LaunchScreen.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-OCMock/Pods-Tests-OCMock-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests-OCMock/Pods-Tests-OCMock-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-OCMock/Pods-Tests-OCMock-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests-OCMock/Pods-Tests-OCMock-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-OCMock/Pods-Tests-OCMock-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests-OCMock/Pods-Tests-OCMock-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-OCMock/Pods-Tests-OCMock.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests-OCMock/Pods-Tests-OCMock.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/LICENSE -------------------------------------------------------------------------------- /LaunchScreen.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/LaunchScreen.podspec -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/LaunchScreenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Pod/Classes/LaunchScreenViewController.h -------------------------------------------------------------------------------- /Pod/Classes/LaunchScreenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/Pod/Classes/LaunchScreenViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/granoff/LaunchScreen/HEAD/README.md --------------------------------------------------------------------------------