├── .gitignore ├── .travis.yml ├── ETSegmentedView.podspec ├── Example ├── ETSegmentedView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ETSegmentedView-Example.xcscheme ├── ETSegmentedView.xcworkspace │ └── contents.xcworkspacedata ├── ETSegmentedView │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── ETAppDelegate.h │ ├── ETAppDelegate.m │ ├── ETSegmentedView-Info.plist │ ├── ETSegmentedView-Prefix.pch │ ├── ETViewController.h │ ├── ETViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── UserInterfaceExampleViewController.h │ ├── UserInterfaceExampleViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Expecta │ │ ├── Expecta │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPBlockDefinedMatcher.m │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPDoubleTuple.m │ │ │ ├── EXPExpect.h │ │ │ ├── EXPExpect.m │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPFloatTuple.m │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── EXPUnsupportedObject.m │ │ │ ├── Expecta.h │ │ │ ├── ExpectaObject.h │ │ │ ├── ExpectaObject.m │ │ │ ├── ExpectaSupport.h │ │ │ ├── ExpectaSupport.m │ │ │ ├── Matchers │ │ │ │ ├── EXPMatcherHelpers.h │ │ │ │ ├── EXPMatcherHelpers.m │ │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ │ ├── EXPMatchers+beCloseTo.m │ │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ │ ├── EXPMatchers+beFalsy.m │ │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ │ ├── EXPMatchers+beGreaterThan.m │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.m │ │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ │ ├── EXPMatchers+beIdenticalTo.m │ │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ │ ├── EXPMatchers+beInTheRangeOf.m │ │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ │ ├── EXPMatchers+beInstanceOf.m │ │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ │ ├── EXPMatchers+beKindOf.m │ │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ │ ├── EXPMatchers+beLessThan.m │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.m │ │ │ │ ├── EXPMatchers+beNil.h │ │ │ │ ├── EXPMatchers+beNil.m │ │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ │ ├── EXPMatchers+beSubclassOf.m │ │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ │ ├── EXPMatchers+beSupersetOf.m │ │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ │ ├── EXPMatchers+beTruthy.m │ │ │ │ ├── EXPMatchers+beginWith.h │ │ │ │ ├── EXPMatchers+beginWith.m │ │ │ │ ├── EXPMatchers+conformTo.h │ │ │ │ ├── EXPMatchers+conformTo.m │ │ │ │ ├── EXPMatchers+contain.h │ │ │ │ ├── EXPMatchers+contain.m │ │ │ │ ├── EXPMatchers+endWith.h │ │ │ │ ├── EXPMatchers+endWith.m │ │ │ │ ├── EXPMatchers+equal.h │ │ │ │ ├── EXPMatchers+equal.m │ │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ │ ├── EXPMatchers+haveCountOf.m │ │ │ │ ├── EXPMatchers+match.h │ │ │ │ ├── EXPMatchers+match.m │ │ │ │ ├── EXPMatchers+postNotification.h │ │ │ │ ├── EXPMatchers+postNotification.m │ │ │ │ ├── EXPMatchers+raise.h │ │ │ │ ├── EXPMatchers+raise.m │ │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ │ ├── EXPMatchers+raiseWithReason.m │ │ │ │ ├── EXPMatchers+respondTo.h │ │ │ │ ├── EXPMatchers+respondTo.m │ │ │ │ └── EXPMatchers.h │ │ │ ├── NSObject+Expecta.h │ │ │ ├── NSValue+Expecta.h │ │ │ └── NSValue+Expecta.m │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ ├── ETSegmentedView │ │ │ │ └── ETSegmentedView.h │ │ │ ├── Expecta │ │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ │ ├── EXPDefines.h │ │ │ │ ├── EXPDoubleTuple.h │ │ │ │ ├── EXPExpect.h │ │ │ │ ├── EXPFloatTuple.h │ │ │ │ ├── EXPMatcher.h │ │ │ │ ├── EXPMatcherHelpers.h │ │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ │ ├── EXPMatchers+beNil.h │ │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ │ ├── EXPMatchers+beginWith.h │ │ │ │ ├── EXPMatchers+conformTo.h │ │ │ │ ├── EXPMatchers+contain.h │ │ │ │ ├── EXPMatchers+endWith.h │ │ │ │ ├── EXPMatchers+equal.h │ │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ │ ├── EXPMatchers+match.h │ │ │ │ ├── EXPMatchers+postNotification.h │ │ │ │ ├── EXPMatchers+raise.h │ │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ │ ├── EXPMatchers+respondTo.h │ │ │ │ ├── EXPMatchers.h │ │ │ │ ├── EXPUnsupportedObject.h │ │ │ │ ├── Expecta.h │ │ │ │ ├── ExpectaObject.h │ │ │ │ ├── ExpectaSupport.h │ │ │ │ ├── NSObject+Expecta.h │ │ │ │ └── NSValue+Expecta.h │ │ │ ├── Specta │ │ │ │ ├── SPTCallSite.h │ │ │ │ ├── SPTCompiledExample.h │ │ │ │ ├── SPTExample.h │ │ │ │ ├── SPTExampleGroup.h │ │ │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ │ │ ├── SPTGlobalBeforeAfterEach.h │ │ │ │ ├── SPTSharedExampleGroups.h │ │ │ │ ├── SPTSpec.h │ │ │ │ ├── SPTTestSuite.h │ │ │ │ ├── Specta.h │ │ │ │ ├── SpectaDSL.h │ │ │ │ ├── SpectaTypes.h │ │ │ │ ├── SpectaUtility.h │ │ │ │ ├── XCTest+Private.h │ │ │ │ └── XCTestCase+Specta.h │ │ │ └── pop │ │ │ │ ├── FloatConversion.h │ │ │ │ ├── POP.h │ │ │ │ ├── POPAction.h │ │ │ │ ├── POPAnimatableProperty.h │ │ │ │ ├── POPAnimation.h │ │ │ │ ├── POPAnimationEvent.h │ │ │ │ ├── POPAnimationEventInternal.h │ │ │ │ ├── POPAnimationExtras.h │ │ │ │ ├── POPAnimationInternal.h │ │ │ │ ├── POPAnimationPrivate.h │ │ │ │ ├── POPAnimationRuntime.h │ │ │ │ ├── POPAnimationTracer.h │ │ │ │ ├── POPAnimationTracerInternal.h │ │ │ │ ├── POPAnimator.h │ │ │ │ ├── POPAnimatorPrivate.h │ │ │ │ ├── POPBasicAnimation.h │ │ │ │ ├── POPBasicAnimationInternal.h │ │ │ │ ├── POPCGUtils.h │ │ │ │ ├── POPCustomAnimation.h │ │ │ │ ├── POPDecayAnimation.h │ │ │ │ ├── POPDecayAnimationInternal.h │ │ │ │ ├── POPDefines.h │ │ │ │ ├── POPGeometry.h │ │ │ │ ├── POPLayerExtras.h │ │ │ │ ├── POPMath.h │ │ │ │ ├── POPPropertyAnimation.h │ │ │ │ ├── POPPropertyAnimationInternal.h │ │ │ │ ├── POPSpringAnimation.h │ │ │ │ ├── POPSpringAnimationInternal.h │ │ │ │ ├── POPSpringSolver.h │ │ │ │ ├── POPVector.h │ │ │ │ ├── TransformationMatrix.h │ │ │ │ └── UnitBezier.h │ │ └── Public │ │ │ ├── ETSegmentedView │ │ │ └── ETSegmentedView.h │ │ │ ├── Expecta │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPExpect.h │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPMatcherHelpers.h │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ ├── EXPMatchers+beNil.h │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ ├── EXPMatchers+beginWith.h │ │ │ ├── EXPMatchers+conformTo.h │ │ │ ├── EXPMatchers+contain.h │ │ │ ├── EXPMatchers+endWith.h │ │ │ ├── EXPMatchers+equal.h │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ ├── EXPMatchers+match.h │ │ │ ├── EXPMatchers+postNotification.h │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── Expecta.h │ │ │ ├── ExpectaObject.h │ │ │ ├── ExpectaSupport.h │ │ │ ├── NSObject+Expecta.h │ │ │ └── NSValue+Expecta.h │ │ │ ├── Specta │ │ │ ├── SPTCallSite.h │ │ │ ├── SPTCompiledExample.h │ │ │ ├── SPTExample.h │ │ │ ├── SPTExampleGroup.h │ │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ │ ├── SPTGlobalBeforeAfterEach.h │ │ │ ├── SPTSharedExampleGroups.h │ │ │ ├── SPTSpec.h │ │ │ ├── SPTTestSuite.h │ │ │ ├── Specta.h │ │ │ ├── SpectaDSL.h │ │ │ ├── SpectaTypes.h │ │ │ ├── SpectaUtility.h │ │ │ ├── XCTest+Private.h │ │ │ └── XCTestCase+Specta.h │ │ │ └── pop │ │ │ ├── POP.h │ │ │ ├── POPAnimatableProperty.h │ │ │ ├── POPAnimation.h │ │ │ ├── POPAnimationEvent.h │ │ │ ├── POPAnimationExtras.h │ │ │ ├── POPAnimationTracer.h │ │ │ ├── POPAnimator.h │ │ │ ├── POPBasicAnimation.h │ │ │ ├── POPCustomAnimation.h │ │ │ ├── POPDecayAnimation.h │ │ │ ├── POPDefines.h │ │ │ ├── POPGeometry.h │ │ │ ├── POPLayerExtras.h │ │ │ ├── POPPropertyAnimation.h │ │ │ └── POPSpringAnimation.h │ ├── Local Podspecs │ │ └── ETSegmentedView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ETSegmentedView.xcscheme │ ├── Specta │ │ ├── LICENSE │ │ ├── README.md │ │ └── Specta │ │ │ └── Specta │ │ │ ├── SPTCallSite.h │ │ │ ├── SPTCallSite.m │ │ │ ├── SPTCompiledExample.h │ │ │ ├── SPTCompiledExample.m │ │ │ ├── SPTExample.h │ │ │ ├── SPTExample.m │ │ │ ├── SPTExampleGroup.h │ │ │ ├── SPTExampleGroup.m │ │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ │ ├── SPTGlobalBeforeAfterEach.h │ │ │ ├── SPTSharedExampleGroups.h │ │ │ ├── SPTSharedExampleGroups.m │ │ │ ├── SPTSpec.h │ │ │ ├── SPTSpec.m │ │ │ ├── SPTTestSuite.h │ │ │ ├── SPTTestSuite.m │ │ │ ├── Specta.h │ │ │ ├── SpectaDSL.h │ │ │ ├── SpectaDSL.m │ │ │ ├── SpectaTypes.h │ │ │ ├── SpectaUtility.h │ │ │ ├── SpectaUtility.m │ │ │ ├── XCTest+Private.h │ │ │ ├── XCTestCase+Specta.h │ │ │ └── XCTestCase+Specta.m │ ├── Target Support Files │ │ ├── ETSegmentedView │ │ │ ├── ETSegmentedView-Private.xcconfig │ │ │ ├── ETSegmentedView-dummy.m │ │ │ ├── ETSegmentedView-prefix.pch │ │ │ └── ETSegmentedView.xcconfig │ │ ├── Expecta │ │ │ ├── Expecta-Private.xcconfig │ │ │ ├── Expecta-dummy.m │ │ │ ├── Expecta-prefix.pch │ │ │ └── Expecta.xcconfig │ │ ├── Pods-ETSegmentedView │ │ │ ├── Pods-ETSegmentedView-acknowledgements.markdown │ │ │ ├── Pods-ETSegmentedView-acknowledgements.plist │ │ │ ├── Pods-ETSegmentedView-dummy.m │ │ │ ├── Pods-ETSegmentedView-resources.sh │ │ │ ├── Pods-ETSegmentedView.debug.xcconfig │ │ │ └── Pods-ETSegmentedView.release.xcconfig │ │ ├── Pods-Tests │ │ │ ├── Pods-Tests-acknowledgements.markdown │ │ │ ├── Pods-Tests-acknowledgements.plist │ │ │ ├── Pods-Tests-dummy.m │ │ │ ├── Pods-Tests-resources.sh │ │ │ ├── Pods-Tests.debug.xcconfig │ │ │ └── Pods-Tests.release.xcconfig │ │ ├── Specta │ │ │ ├── Specta-Private.xcconfig │ │ │ ├── Specta-dummy.m │ │ │ ├── Specta-prefix.pch │ │ │ └── Specta.xcconfig │ │ └── pop │ │ │ ├── pop-Private.xcconfig │ │ │ ├── pop-dummy.m │ │ │ ├── pop-prefix.pch │ │ │ └── pop.xcconfig │ └── pop │ │ ├── LICENSE │ │ ├── README.md │ │ └── pop │ │ ├── POP.h │ │ ├── POPAction.h │ │ ├── POPAnimatableProperty.h │ │ ├── POPAnimatableProperty.mm │ │ ├── POPAnimation.h │ │ ├── POPAnimation.mm │ │ ├── POPAnimationEvent.h │ │ ├── POPAnimationEvent.mm │ │ ├── POPAnimationEventInternal.h │ │ ├── POPAnimationExtras.h │ │ ├── POPAnimationExtras.mm │ │ ├── POPAnimationInternal.h │ │ ├── POPAnimationPrivate.h │ │ ├── POPAnimationRuntime.h │ │ ├── POPAnimationRuntime.mm │ │ ├── POPAnimationTracer.h │ │ ├── POPAnimationTracer.mm │ │ ├── POPAnimationTracerInternal.h │ │ ├── POPAnimator.h │ │ ├── POPAnimator.mm │ │ ├── POPAnimatorPrivate.h │ │ ├── POPBasicAnimation.h │ │ ├── POPBasicAnimation.mm │ │ ├── POPBasicAnimationInternal.h │ │ ├── POPCGUtils.h │ │ ├── POPCGUtils.mm │ │ ├── POPCustomAnimation.h │ │ ├── POPCustomAnimation.mm │ │ ├── POPDecayAnimation.h │ │ ├── POPDecayAnimation.mm │ │ ├── POPDecayAnimationInternal.h │ │ ├── POPDefines.h │ │ ├── POPGeometry.h │ │ ├── POPGeometry.mm │ │ ├── POPLayerExtras.h │ │ ├── POPLayerExtras.mm │ │ ├── POPMath.h │ │ ├── POPMath.mm │ │ ├── POPPropertyAnimation.h │ │ ├── POPPropertyAnimation.mm │ │ ├── POPPropertyAnimationInternal.h │ │ ├── POPSpringAnimation.h │ │ ├── POPSpringAnimation.mm │ │ ├── POPSpringAnimationInternal.h │ │ ├── POPSpringSolver.h │ │ ├── POPVector.h │ │ ├── POPVector.mm │ │ └── WebCore │ │ ├── FloatConversion.h │ │ ├── TransformationMatrix.cpp │ │ ├── TransformationMatrix.h │ │ └── UnitBezier.h ├── Resources │ └── photo1.jpg └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── ETSegmentedView.h │ └── ETSegmentedView.m ├── README.md ├── etsegmentedview_logo.png └── segmented_clip.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/.travis.yml -------------------------------------------------------------------------------- /ETSegmentedView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/ETSegmentedView.podspec -------------------------------------------------------------------------------- /Example/ETSegmentedView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ETSegmentedView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ETSegmentedView.xcodeproj/xcshareddata/xcschemes/ETSegmentedView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView.xcodeproj/xcshareddata/xcschemes/ETSegmentedView-Example.xcscheme -------------------------------------------------------------------------------- /Example/ETSegmentedView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ETSegmentedView/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Example/ETSegmentedView/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/ETSegmentedView/ETAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/ETAppDelegate.h -------------------------------------------------------------------------------- /Example/ETSegmentedView/ETAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/ETAppDelegate.m -------------------------------------------------------------------------------- /Example/ETSegmentedView/ETSegmentedView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/ETSegmentedView-Info.plist -------------------------------------------------------------------------------- /Example/ETSegmentedView/ETSegmentedView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/ETSegmentedView-Prefix.pch -------------------------------------------------------------------------------- /Example/ETSegmentedView/ETViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/ETViewController.h -------------------------------------------------------------------------------- /Example/ETSegmentedView/ETViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/ETViewController.m -------------------------------------------------------------------------------- /Example/ETSegmentedView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ETSegmentedView/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/ETSegmentedView/UserInterfaceExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/UserInterfaceExampleViewController.h -------------------------------------------------------------------------------- /Example/ETSegmentedView/UserInterfaceExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/UserInterfaceExampleViewController.m -------------------------------------------------------------------------------- /Example/ETSegmentedView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ETSegmentedView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/ETSegmentedView/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPDoubleTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPDoubleTuple.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPExpect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPExpect.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPFloatTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPFloatTuple.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPUnsupportedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/EXPUnsupportedObject.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/ExpectaObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/ExpectaObject.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/ExpectaSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/ExpectaSupport.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beSupersetOf, (id subset)); 4 | 5 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/NSValue+Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/Expecta/NSValue+Expecta.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Expecta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Expecta/README.md -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/ETSegmentedView/ETSegmentedView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/ETSegmentedView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/ETSegmentedView/ETSegmentedView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/ETSegmentedView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ETSegmentedView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Local Podspecs/ETSegmentedView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/ETSegmentedView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/ETSegmentedView.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Specta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Specta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/README.md -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTCallSite.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTCompiledExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTCompiledExample.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTExample.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTExampleGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTExampleGroup.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTSpec.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTTestSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SPTTestSuite.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SpectaDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SpectaDSL.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SpectaUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/SpectaUtility.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/XCTestCase+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Specta/Specta/Specta/XCTestCase+Specta.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ETSegmentedView/ETSegmentedView-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/ETSegmentedView/ETSegmentedView-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ETSegmentedView/ETSegmentedView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/ETSegmentedView/ETSegmentedView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ETSegmentedView/ETSegmentedView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/ETSegmentedView/ETSegmentedView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ETSegmentedView/ETSegmentedView.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Expecta/Expecta-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Expecta/Expecta-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Expecta/Expecta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Expecta/Expecta-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Expecta/Expecta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Expecta/Expecta-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Expecta/Expecta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Expecta/Expecta.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-ETSegmentedView/Pods-ETSegmentedView.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Specta/Specta-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Specta/Specta-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Specta/Specta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Specta/Specta-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Specta/Specta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Specta/Specta-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Specta/Specta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/Specta/Specta.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/pop/pop-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/pop/pop-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/pop/pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/pop/pop-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/pop/pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/pop/pop-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/pop/pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/Target Support Files/pop/pop.xcconfig -------------------------------------------------------------------------------- /Example/Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/LICENSE -------------------------------------------------------------------------------- /Example/Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/README.md -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /Example/Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /Example/Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Example/Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Pods/pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Example/Resources/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Resources/photo1.jpg -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/ETSegmentedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Pod/Classes/ETSegmentedView.h -------------------------------------------------------------------------------- /Pod/Classes/ETSegmentedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/Pod/Classes/ETSegmentedView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/README.md -------------------------------------------------------------------------------- /etsegmentedview_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/etsegmentedview_logo.png -------------------------------------------------------------------------------- /segmented_clip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ersentekin/ETSegmentedView/HEAD/segmented_clip.gif --------------------------------------------------------------------------------