├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Kiwi │ │ ├── Classes │ │ │ ├── Config │ │ │ │ ├── KWAllTestsSuite.m │ │ │ │ ├── KWSuiteConfigurationBase.h │ │ │ │ └── KWSuiteConfigurationBase.m │ │ │ ├── Core │ │ │ │ ├── KWAny.h │ │ │ │ ├── KWAny.m │ │ │ │ ├── KWBackgroundTask.h │ │ │ │ ├── KWBackgroundTask.m │ │ │ │ ├── KWBlock.h │ │ │ │ ├── KWBlock.m │ │ │ │ ├── KWCallSite.h │ │ │ │ ├── KWCallSite.m │ │ │ │ ├── KWCaptureSpy.h │ │ │ │ ├── KWCaptureSpy.m │ │ │ │ ├── KWCountType.h │ │ │ │ ├── KWDeviceInfo.h │ │ │ │ ├── KWDeviceInfo.m │ │ │ │ ├── KWExample.h │ │ │ │ ├── KWExample.m │ │ │ │ ├── KWExampleDelegate.h │ │ │ │ ├── KWExampleNodeVisitor.h │ │ │ │ ├── KWExampleSuite.h │ │ │ │ ├── KWExampleSuite.m │ │ │ │ ├── KWExampleSuiteBuilder.h │ │ │ │ ├── KWExampleSuiteBuilder.m │ │ │ │ ├── KWExpectationType.h │ │ │ │ ├── KWFailure.h │ │ │ │ ├── KWFailure.m │ │ │ │ ├── KWFormatter.h │ │ │ │ ├── KWFormatter.m │ │ │ │ ├── KWFutureObject.h │ │ │ │ ├── KWFutureObject.m │ │ │ │ ├── KWInvocationCapturer.h │ │ │ │ ├── KWInvocationCapturer.m │ │ │ │ ├── KWLet.h │ │ │ │ ├── KWMatcher.h │ │ │ │ ├── KWMatcher.m │ │ │ │ ├── KWMatcherFactory.h │ │ │ │ ├── KWMatcherFactory.m │ │ │ │ ├── KWMatchers.h │ │ │ │ ├── KWMatchers.m │ │ │ │ ├── KWMatching.h │ │ │ │ ├── KWMessagePattern.h │ │ │ │ ├── KWMessagePattern.m │ │ │ │ ├── KWMessageSpying.h │ │ │ │ ├── KWMessageTracker.h │ │ │ │ ├── KWMessageTracker.m │ │ │ │ ├── KWNull.h │ │ │ │ ├── KWNull.m │ │ │ │ ├── KWObjCUtilities.h │ │ │ │ ├── KWObjCUtilities.m │ │ │ │ ├── KWProbe.h │ │ │ │ ├── KWProbePoller.h │ │ │ │ ├── KWProbePoller.m │ │ │ │ ├── KWReporting.h │ │ │ │ ├── KWSpec.h │ │ │ │ ├── KWSpec.m │ │ │ │ ├── KWStringUtilities.h │ │ │ │ ├── KWStringUtilities.m │ │ │ │ ├── KWSymbolicator.h │ │ │ │ ├── KWSymbolicator.m │ │ │ │ ├── KWValue.h │ │ │ │ ├── KWValue.m │ │ │ │ ├── KWWorkarounds.h │ │ │ │ ├── KWWorkarounds.m │ │ │ │ ├── Kiwi.h │ │ │ │ ├── KiwiBlockMacros.h │ │ │ │ ├── KiwiConfiguration.h │ │ │ │ ├── KiwiMacros.h │ │ │ │ ├── NSInvocation+KiwiAdditions.h │ │ │ │ ├── NSInvocation+KiwiAdditions.m │ │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ │ ├── NSInvocation+OCMAdditions.m │ │ │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ │ │ ├── NSMethodSignature+KiwiAdditions.m │ │ │ │ ├── NSNumber+KiwiAdditions.h │ │ │ │ ├── NSNumber+KiwiAdditions.m │ │ │ │ ├── NSObject+KiwiSpyAdditions.h │ │ │ │ ├── NSObject+KiwiSpyAdditions.m │ │ │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ │ │ ├── NSObject+KiwiVerifierAdditions.m │ │ │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ │ │ ├── NSProxy+KiwiVerifierAdditions.m │ │ │ │ ├── NSValue+KiwiAdditions.h │ │ │ │ └── NSValue+KiwiAdditions.m │ │ │ ├── Matchers │ │ │ │ ├── KWBeBetweenMatcher.h │ │ │ │ ├── KWBeBetweenMatcher.m │ │ │ │ ├── KWBeEmptyMatcher.h │ │ │ │ ├── KWBeEmptyMatcher.m │ │ │ │ ├── KWBeIdenticalToMatcher.h │ │ │ │ ├── KWBeIdenticalToMatcher.m │ │ │ │ ├── KWBeKindOfClassMatcher.h │ │ │ │ ├── KWBeKindOfClassMatcher.m │ │ │ │ ├── KWBeMemberOfClassMatcher.h │ │ │ │ ├── KWBeMemberOfClassMatcher.m │ │ │ │ ├── KWBeSubclassOfClassMatcher.h │ │ │ │ ├── KWBeSubclassOfClassMatcher.m │ │ │ │ ├── KWBeTrueMatcher.h │ │ │ │ ├── KWBeTrueMatcher.m │ │ │ │ ├── KWBeWithinMatcher.h │ │ │ │ ├── KWBeWithinMatcher.m │ │ │ │ ├── KWBeZeroMatcher.h │ │ │ │ ├── KWBeZeroMatcher.m │ │ │ │ ├── KWBlockRaiseMatcher.h │ │ │ │ ├── KWBlockRaiseMatcher.m │ │ │ │ ├── KWChangeMatcher.h │ │ │ │ ├── KWChangeMatcher.m │ │ │ │ ├── KWConformToProtocolMatcher.h │ │ │ │ ├── KWConformToProtocolMatcher.m │ │ │ │ ├── KWContainMatcher.h │ │ │ │ ├── KWContainMatcher.m │ │ │ │ ├── KWContainStringMatcher.h │ │ │ │ ├── KWContainStringMatcher.m │ │ │ │ ├── KWEqualMatcher.h │ │ │ │ ├── KWEqualMatcher.m │ │ │ │ ├── KWGenericMatchEvaluator.h │ │ │ │ ├── KWGenericMatchEvaluator.m │ │ │ │ ├── KWGenericMatcher.h │ │ │ │ ├── KWGenericMatcher.m │ │ │ │ ├── KWGenericMatchingAdditions.h │ │ │ │ ├── KWGenericMatchingAdditions.m │ │ │ │ ├── KWHaveMatcher.h │ │ │ │ ├── KWHaveMatcher.m │ │ │ │ ├── KWHaveValueMatcher.h │ │ │ │ ├── KWHaveValueMatcher.m │ │ │ │ ├── KWInequalityMatcher.h │ │ │ │ ├── KWInequalityMatcher.m │ │ │ │ ├── KWNilMatcher.h │ │ │ │ ├── KWNilMatcher.m │ │ │ │ ├── KWNotificationMatcher.h │ │ │ │ ├── KWNotificationMatcher.m │ │ │ │ ├── KWReceiveMatcher.h │ │ │ │ ├── KWReceiveMatcher.m │ │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ │ ├── KWRegularExpressionPatternMatcher.m │ │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ │ ├── KWRespondToSelectorMatcher.m │ │ │ │ ├── KWStringContainsMatcher.h │ │ │ │ ├── KWStringContainsMatcher.m │ │ │ │ ├── KWStringPrefixMatcher.h │ │ │ │ ├── KWStringPrefixMatcher.m │ │ │ │ ├── KWUserDefinedMatcher.h │ │ │ │ └── KWUserDefinedMatcher.m │ │ │ ├── Mocking │ │ │ │ ├── KWMock.h │ │ │ │ ├── KWMock.m │ │ │ │ ├── NSObject+KiwiMockAdditions.h │ │ │ │ └── NSObject+KiwiMockAdditions.m │ │ │ ├── Nodes │ │ │ │ ├── KWAfterAllNode.h │ │ │ │ ├── KWAfterAllNode.m │ │ │ │ ├── KWAfterEachNode.h │ │ │ │ ├── KWAfterEachNode.m │ │ │ │ ├── KWBeforeAllNode.h │ │ │ │ ├── KWBeforeAllNode.m │ │ │ │ ├── KWBeforeEachNode.h │ │ │ │ ├── KWBeforeEachNode.m │ │ │ │ ├── KWBlockNode.h │ │ │ │ ├── KWBlockNode.m │ │ │ │ ├── KWContextNode.h │ │ │ │ ├── KWContextNode.m │ │ │ │ ├── KWExampleNode.h │ │ │ │ ├── KWItNode.h │ │ │ │ ├── KWItNode.m │ │ │ │ ├── KWLetNode.h │ │ │ │ ├── KWLetNode.m │ │ │ │ ├── KWPendingNode.h │ │ │ │ ├── KWPendingNode.m │ │ │ │ ├── KWRegisterMatchersNode.h │ │ │ │ └── KWRegisterMatchersNode.m │ │ │ ├── Shared Examples │ │ │ │ ├── KWSharedExample.h │ │ │ │ ├── KWSharedExample.m │ │ │ │ ├── KWSharedExampleRegistry.h │ │ │ │ └── KWSharedExampleRegistry.m │ │ │ ├── Stubbing │ │ │ │ ├── KWIntercept.h │ │ │ │ ├── KWIntercept.m │ │ │ │ ├── KWStub.h │ │ │ │ ├── KWStub.m │ │ │ │ ├── NSObject+KiwiStubAdditions.h │ │ │ │ └── NSObject+KiwiStubAdditions.m │ │ │ └── Verifiers │ │ │ │ ├── KWAsyncVerifier.h │ │ │ │ ├── KWAsyncVerifier.m │ │ │ │ ├── KWExistVerifier.h │ │ │ │ ├── KWExistVerifier.m │ │ │ │ ├── KWMatchVerifier.h │ │ │ │ ├── KWMatchVerifier.m │ │ │ │ └── KWVerifying.h │ │ ├── License.txt │ │ └── Readme.md │ ├── Local Podspecs │ │ └── SMFloatingLabelTextField.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SMFloatingLabelTextField.xcscheme │ └── Target Support Files │ │ ├── Kiwi │ │ ├── Info.plist │ │ ├── Kiwi-dummy.m │ │ ├── Kiwi-prefix.pch │ │ ├── Kiwi-umbrella.h │ │ ├── Kiwi.modulemap │ │ └── Kiwi.xcconfig │ │ ├── Pods-SMFloatingLabelTextField_Example │ │ ├── Info.plist │ │ ├── Pods-SMFloatingLabelTextField_Example-acknowledgements.markdown │ │ ├── Pods-SMFloatingLabelTextField_Example-acknowledgements.plist │ │ ├── Pods-SMFloatingLabelTextField_Example-dummy.m │ │ ├── Pods-SMFloatingLabelTextField_Example-frameworks.sh │ │ ├── Pods-SMFloatingLabelTextField_Example-resources.sh │ │ ├── Pods-SMFloatingLabelTextField_Example-umbrella.h │ │ ├── Pods-SMFloatingLabelTextField_Example.debug.xcconfig │ │ ├── Pods-SMFloatingLabelTextField_Example.modulemap │ │ └── Pods-SMFloatingLabelTextField_Example.release.xcconfig │ │ ├── Pods-SMFloatingLabelTextField_Tests │ │ ├── Info.plist │ │ ├── Pods-SMFloatingLabelTextField_Tests-acknowledgements.markdown │ │ ├── Pods-SMFloatingLabelTextField_Tests-acknowledgements.plist │ │ ├── Pods-SMFloatingLabelTextField_Tests-dummy.m │ │ ├── Pods-SMFloatingLabelTextField_Tests-frameworks.sh │ │ ├── Pods-SMFloatingLabelTextField_Tests-resources.sh │ │ ├── Pods-SMFloatingLabelTextField_Tests-umbrella.h │ │ ├── Pods-SMFloatingLabelTextField_Tests.debug.xcconfig │ │ ├── Pods-SMFloatingLabelTextField_Tests.modulemap │ │ └── Pods-SMFloatingLabelTextField_Tests.release.xcconfig │ │ └── SMFloatingLabelTextField │ │ ├── Info.plist │ │ ├── SMFloatingLabelTextField-dummy.m │ │ ├── SMFloatingLabelTextField-prefix.pch │ │ ├── SMFloatingLabelTextField-umbrella.h │ │ ├── SMFloatingLabelTextField.modulemap │ │ └── SMFloatingLabelTextField.xcconfig ├── SMFloatingLabelTextField.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SMFloatingLabelTextField-Example.xcscheme ├── SMFloatingLabelTextField.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SMFloatingLabelTextField │ ├── AppDelegate.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Launch Screen.storyboard │ ├── Main.storyboard │ ├── MainViewController.swift │ ├── SMFloatingLabelTextField-Info.plist │ ├── SMFloatingLabelTextField-Prefix.pch │ ├── SMFloatingLabelTextField_Example-Bridging-Header.h │ └── en.lproj │ │ └── InfoPlist.strings └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ ├── en.lproj │ └── InfoPlist.strings │ └── setup_code_coverage.rb ├── FloatingLabelTextField ├── .gitignore ├── Classes │ └── FloatingLabelTextField.swift └── README.md ├── LICENSE ├── Package.swift ├── README.md ├── SMFloatingLabelTextField.podspec ├── SMFloatingLabelTextField ├── .gitignore ├── Assets │ └── .gitkeep ├── Classes │ ├── .gitkeep │ ├── SMFloatingLabelTextField.h │ ├── SMFloatingLabelTextField.m │ └── include │ │ └── FloatingLabelTextField.h └── README.md ├── _Pods.xcodeproj └── art └── floating_label.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Config/KWAllTestsSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Config/KWAllTestsSuite.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWAny.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWAny.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWBackgroundTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWBackgroundTask.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWBackgroundTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWBackgroundTask.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWBlock.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWCallSite.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCountType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWExample.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuite.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExpectationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFailure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWFailure.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWFormatter.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFutureObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFutureObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWFutureObject.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWLet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatchers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatchers.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessagePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessagePattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessagePattern.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessageSpying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessageTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessageTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessageTracker.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWNull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWNull.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWProbePoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWProbePoller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWProbePoller.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWReporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWSpec.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWStringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWStringUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWStringUtilities.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSymbolicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSymbolicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWSymbolicator.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWValue.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWWorkarounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWWorkarounds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KWWorkarounds.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/Kiwi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KiwiBlockMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KiwiConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KiwiMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/KWMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/KWMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Mocking/KWMock.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWContextNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWContextNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWContextNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWExampleNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWItNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWItNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWItNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWLetNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWLetNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWLetNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExample.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Shared Examples/KWSharedExampleRegistry.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWStub.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWVerifying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/License.txt -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Kiwi/Readme.md -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SMFloatingLabelTextField.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Local Podspecs/SMFloatingLabelTextField.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/SMFloatingLabelTextField.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/SMFloatingLabelTextField.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Kiwi/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Kiwi-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Kiwi/Kiwi-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Kiwi-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Kiwi/Kiwi-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Kiwi-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Kiwi/Kiwi-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Kiwi.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Kiwi/Kiwi.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Kiwi/Kiwi.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Kiwi/Kiwi.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Example/Pods-SMFloatingLabelTextField_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/Pods-SMFloatingLabelTextField_Tests/Pods-SMFloatingLabelTextField_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SMFloatingLabelTextField/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/SMFloatingLabelTextField/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SMFloatingLabelTextField/SMFloatingLabelTextField-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/SMFloatingLabelTextField/SMFloatingLabelTextField-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SMFloatingLabelTextField/SMFloatingLabelTextField-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/SMFloatingLabelTextField/SMFloatingLabelTextField-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SMFloatingLabelTextField/SMFloatingLabelTextField-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/SMFloatingLabelTextField/SMFloatingLabelTextField-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SMFloatingLabelTextField/SMFloatingLabelTextField.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/SMFloatingLabelTextField/SMFloatingLabelTextField.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SMFloatingLabelTextField/SMFloatingLabelTextField.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Pods/Target Support Files/SMFloatingLabelTextField/SMFloatingLabelTextField.xcconfig -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField.xcodeproj/xcshareddata/xcschemes/SMFloatingLabelTextField-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField.xcodeproj/xcshareddata/xcschemes/SMFloatingLabelTextField-Example.xcscheme -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField/Launch Screen.storyboard -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField/Main.storyboard -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField/MainViewController.swift -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField/SMFloatingLabelTextField-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField/SMFloatingLabelTextField-Info.plist -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField/SMFloatingLabelTextField-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField/SMFloatingLabelTextField-Prefix.pch -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField/SMFloatingLabelTextField_Example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/SMFloatingLabelTextField/SMFloatingLabelTextField_Example-Bridging-Header.h -------------------------------------------------------------------------------- /Example/SMFloatingLabelTextField/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Tests/setup_code_coverage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Example/Tests/setup_code_coverage.rb -------------------------------------------------------------------------------- /FloatingLabelTextField/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /FloatingLabelTextField/Classes/FloatingLabelTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/FloatingLabelTextField/Classes/FloatingLabelTextField.swift -------------------------------------------------------------------------------- /FloatingLabelTextField/README.md: -------------------------------------------------------------------------------- 1 | # FloatingLabelTextField 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/README.md -------------------------------------------------------------------------------- /SMFloatingLabelTextField.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/SMFloatingLabelTextField.podspec -------------------------------------------------------------------------------- /SMFloatingLabelTextField/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /SMFloatingLabelTextField/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SMFloatingLabelTextField/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SMFloatingLabelTextField/Classes/SMFloatingLabelTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/SMFloatingLabelTextField/Classes/SMFloatingLabelTextField.h -------------------------------------------------------------------------------- /SMFloatingLabelTextField/Classes/SMFloatingLabelTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/SMFloatingLabelTextField/Classes/SMFloatingLabelTextField.m -------------------------------------------------------------------------------- /SMFloatingLabelTextField/Classes/include/FloatingLabelTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/SMFloatingLabelTextField/Classes/include/FloatingLabelTextField.h -------------------------------------------------------------------------------- /SMFloatingLabelTextField/README.md: -------------------------------------------------------------------------------- 1 | # SMFloatingLabelTextField 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /art/floating_label.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/SMFloatingLabelTextField/HEAD/art/floating_label.gif --------------------------------------------------------------------------------