├── .gitignore ├── .slather.yml ├── .travis.yml ├── GTScrollNavigationBar.podspec ├── GTScrollNavigationBar ├── GTScrollNavigationBar.h └── GTScrollNavigationBar.m ├── GTScrollNavigationBarExample ├── GTScrollNavigationBarExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── GTScrollNavigationBarExample.xcscheme ├── GTScrollNavigationBarExample.xcworkspace │ └── contents.xcworkspacedata ├── GTScrollNavigationBarExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DemoTableViewController.h │ ├── DemoTableViewController.m │ ├── DemoWebViewController.h │ ├── DemoWebViewController.m │ ├── GTScrollNavigationBarExample-Info.plist │ ├── GTScrollNavigationBarExample-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Launch Screen.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── GTScrollNavigationBarTests │ ├── GTScrollNavigationBarSpec.m │ └── Info.plist ├── 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 │ │ ├── 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 │ │ ├── GTScrollNavigationBar │ │ │ └── GTScrollNavigationBar.h │ │ ├── KIF │ │ │ ├── CAAnimation+KIFAdditions.h │ │ │ ├── CALayer-KIFAdditions.h │ │ │ ├── CGGeometry-KIFAdditions.h │ │ │ ├── IOHIDEvent+KIF.h │ │ │ ├── KIF.h │ │ │ ├── KIFAccessibilityEnabler.h │ │ │ ├── KIFSystemTestActor.h │ │ │ ├── KIFTestActor.h │ │ │ ├── KIFTestCase.h │ │ │ ├── KIFTestStepValidation.h │ │ │ ├── KIFTypist.h │ │ │ ├── KIFUIObject.h │ │ │ ├── KIFUITestActor-ConditionalTests.h │ │ │ ├── KIFUITestActor.h │ │ │ ├── KIFUIViewTestActor.h │ │ │ ├── LoadableCategory.h │ │ │ ├── NSBundle-KIFAdditions.h │ │ │ ├── NSError-KIFAdditions.h │ │ │ ├── NSException-KIFAdditions.h │ │ │ ├── NSFileManager-KIFAdditions.h │ │ │ ├── NSPredicate+KIFAdditions.h │ │ │ ├── NSString+KIFAdditions.h │ │ │ ├── UIAccessibilityElement-KIFAdditions.h │ │ │ ├── UIApplication-KIFAdditions.h │ │ │ ├── UIAutomationHelper.h │ │ │ ├── UIEvent+KIFAdditions.h │ │ │ ├── UIScreen+KIFAdditions.h │ │ │ ├── UIScrollView-KIFAdditions.h │ │ │ ├── UITableView-KIFAdditions.h │ │ │ ├── UITouch-KIFAdditions.h │ │ │ ├── UIView-Debugging.h │ │ │ ├── UIView-KIFAdditions.h │ │ │ ├── UIWindow-KIFAdditions.h │ │ │ └── XCTestCase-KIFAdditions.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 │ └── Public │ │ ├── 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 │ │ ├── GTScrollNavigationBar │ │ └── GTScrollNavigationBar.h │ │ ├── KIF │ │ ├── CALayer-KIFAdditions.h │ │ ├── CGGeometry-KIFAdditions.h │ │ ├── IOHIDEvent+KIF.h │ │ ├── KIF.h │ │ ├── KIFAccessibilityEnabler.h │ │ ├── KIFSystemTestActor.h │ │ ├── KIFTestActor.h │ │ ├── KIFTestCase.h │ │ ├── KIFTestStepValidation.h │ │ ├── KIFTypist.h │ │ ├── KIFUIObject.h │ │ ├── KIFUITestActor-ConditionalTests.h │ │ ├── KIFUITestActor.h │ │ ├── KIFUIViewTestActor.h │ │ ├── NSBundle-KIFAdditions.h │ │ ├── NSError-KIFAdditions.h │ │ ├── NSException-KIFAdditions.h │ │ ├── NSFileManager-KIFAdditions.h │ │ ├── UIAccessibilityElement-KIFAdditions.h │ │ ├── UIApplication-KIFAdditions.h │ │ ├── UIAutomationHelper.h │ │ ├── UIScrollView-KIFAdditions.h │ │ ├── UITableView-KIFAdditions.h │ │ ├── UITouch-KIFAdditions.h │ │ ├── UIView-Debugging.h │ │ ├── UIView-KIFAdditions.h │ │ ├── UIWindow-KIFAdditions.h │ │ └── XCTestCase-KIFAdditions.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 │ ├── KIF │ ├── Additions │ │ ├── CAAnimation+KIFAdditions.h │ │ ├── CAAnimation+KIFAdditions.m │ │ ├── CALayer-KIFAdditions.h │ │ ├── CALayer-KIFAdditions.m │ │ ├── CGGeometry-KIFAdditions.h │ │ ├── CGGeometry-KIFAdditions.m │ │ ├── LoadableCategory.h │ │ ├── NSBundle-KIFAdditions.h │ │ ├── NSBundle-KIFAdditions.m │ │ ├── NSError-KIFAdditions.h │ │ ├── NSError-KIFAdditions.m │ │ ├── NSException-KIFAdditions.h │ │ ├── NSException-KIFAdditions.m │ │ ├── NSFileManager-KIFAdditions.h │ │ ├── NSFileManager-KIFAdditions.m │ │ ├── NSPredicate+KIFAdditions.h │ │ ├── NSPredicate+KIFAdditions.m │ │ ├── NSString+KIFAdditions.h │ │ ├── NSString+KIFAdditions.m │ │ ├── UIAccessibilityElement-KIFAdditions.h │ │ ├── UIAccessibilityElement-KIFAdditions.m │ │ ├── UIApplication-KIFAdditions.h │ │ ├── UIApplication-KIFAdditions.m │ │ ├── UIEvent+KIFAdditions.h │ │ ├── UIEvent+KIFAdditions.m │ │ ├── UIScreen+KIFAdditions.h │ │ ├── UIScreen+KIFAdditions.m │ │ ├── UIScrollView-KIFAdditions.h │ │ ├── UIScrollView-KIFAdditions.m │ │ ├── UITableView-KIFAdditions.h │ │ ├── UITableView-KIFAdditions.m │ │ ├── UITouch-KIFAdditions.h │ │ ├── UITouch-KIFAdditions.m │ │ ├── UIView-Debugging.h │ │ ├── UIView-Debugging.m │ │ ├── UIView-KIFAdditions.h │ │ ├── UIView-KIFAdditions.m │ │ ├── UIWindow-KIFAdditions.h │ │ ├── UIWindow-KIFAdditions.m │ │ ├── XCTestCase-KIFAdditions.h │ │ └── XCTestCase-KIFAdditions.m │ ├── Classes │ │ ├── IOHIDEvent+KIF.h │ │ ├── IOHIDEvent+KIF.m │ │ ├── KIF.h │ │ ├── KIFAccessibilityEnabler.h │ │ ├── KIFAccessibilityEnabler.m │ │ ├── KIFSystemTestActor.h │ │ ├── KIFSystemTestActor.m │ │ ├── KIFTestActor.h │ │ ├── KIFTestActor.m │ │ ├── KIFTestCase.h │ │ ├── KIFTestCase.m │ │ ├── KIFTestStepValidation.h │ │ ├── KIFTestStepValidation.m │ │ ├── KIFTypist.h │ │ ├── KIFTypist.m │ │ ├── KIFUIObject.h │ │ ├── KIFUIObject.m │ │ ├── KIFUITestActor-ConditionalTests.h │ │ ├── KIFUITestActor-ConditionalTests.m │ │ ├── KIFUITestActor.h │ │ ├── KIFUITestActor.m │ │ ├── KIFUIViewTestActor.h │ │ ├── KIFUIViewTestActor.m │ │ ├── UIAutomationHelper.h │ │ └── UIAutomationHelper.m │ ├── LICENSE │ └── README.md │ ├── Local Podspecs │ └── GTScrollNavigationBar.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── 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 │ ├── Expecta │ ├── Expecta-dummy.m │ ├── Expecta-prefix.pch │ └── Expecta.xcconfig │ ├── GTScrollNavigationBar │ ├── GTScrollNavigationBar-dummy.m │ ├── GTScrollNavigationBar-prefix.pch │ └── GTScrollNavigationBar.xcconfig │ ├── KIF │ ├── KIF-dummy.m │ ├── KIF-prefix.pch │ └── KIF.xcconfig │ ├── Pods-GTScrollNavigationBarExample │ ├── Pods-GTScrollNavigationBarExample-acknowledgements.markdown │ ├── Pods-GTScrollNavigationBarExample-acknowledgements.plist │ ├── Pods-GTScrollNavigationBarExample-dummy.m │ ├── Pods-GTScrollNavigationBarExample-frameworks.sh │ ├── Pods-GTScrollNavigationBarExample-resources.sh │ ├── Pods-GTScrollNavigationBarExample.debug.xcconfig │ └── Pods-GTScrollNavigationBarExample.release.xcconfig │ ├── Pods-GTScrollNavigationBarTests │ ├── Pods-GTScrollNavigationBarTests-acknowledgements.markdown │ ├── Pods-GTScrollNavigationBarTests-acknowledgements.plist │ ├── Pods-GTScrollNavigationBarTests-dummy.m │ ├── Pods-GTScrollNavigationBarTests-frameworks.sh │ ├── Pods-GTScrollNavigationBarTests-resources.sh │ ├── Pods-GTScrollNavigationBarTests.debug.xcconfig │ └── Pods-GTScrollNavigationBarTests.release.xcconfig │ └── Specta │ ├── Specta-dummy.m │ ├── Specta-prefix.pch │ └── Specta.xcconfig ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/.gitignore -------------------------------------------------------------------------------- /.slather.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/.slather.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/.travis.yml -------------------------------------------------------------------------------- /GTScrollNavigationBar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBar.podspec -------------------------------------------------------------------------------- /GTScrollNavigationBar/GTScrollNavigationBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBar/GTScrollNavigationBar.h -------------------------------------------------------------------------------- /GTScrollNavigationBar/GTScrollNavigationBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBar/GTScrollNavigationBar.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample.xcodeproj/xcshareddata/xcschemes/GTScrollNavigationBarExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample.xcodeproj/xcshareddata/xcschemes/GTScrollNavigationBarExample.xcscheme -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/AppDelegate.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/AppDelegate.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/DemoTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/DemoTableViewController.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/DemoTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/DemoTableViewController.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/DemoWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/DemoWebViewController.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/DemoWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/DemoWebViewController.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/GTScrollNavigationBarExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/GTScrollNavigationBarExample-Info.plist -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/GTScrollNavigationBarExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/GTScrollNavigationBarExample-Prefix.pch -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/Launch Screen.storyboard -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarExample/main.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarTests/GTScrollNavigationBarSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarTests/GTScrollNavigationBarSpec.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/GTScrollNavigationBarTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/GTScrollNavigationBarTests/Info.plist -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Podfile -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Podfile.lock -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPDoubleTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPDoubleTuple.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPExpect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPExpect.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPFloatTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPFloatTuple.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPUnsupportedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/EXPUnsupportedObject.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/ExpectaObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/ExpectaObject.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/ExpectaSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/ExpectaSupport.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beSupersetOf, (id subset)); 4 | 5 | -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/Expecta/NSValue+Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/Expecta/NSValue+Expecta.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/LICENSE -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Expecta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Expecta/README.md -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/GTScrollNavigationBar/GTScrollNavigationBar.h: -------------------------------------------------------------------------------- 1 | ../../../../../GTScrollNavigationBar/GTScrollNavigationBar.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/CAAnimation+KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/CAAnimation+KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/CALayer-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/CALayer-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/CGGeometry-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/CGGeometry-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/IOHIDEvent+KIF.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/IOHIDEvent+KIF.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIF.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIF.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIFAccessibilityEnabler.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFAccessibilityEnabler.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIFSystemTestActor.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFSystemTestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIFTestActor.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFTestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIFTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFTestCase.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIFTestStepValidation.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFTestStepValidation.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIFTypist.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFTypist.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIFUIObject.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFUIObject.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIFUITestActor-ConditionalTests.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFUITestActor-ConditionalTests.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIFUITestActor.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFUITestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/KIFUIViewTestActor.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFUIViewTestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/LoadableCategory.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/LoadableCategory.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/NSBundle-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/NSBundle-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/NSError-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/NSError-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/NSException-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/NSException-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/NSFileManager-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/NSFileManager-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/NSPredicate+KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/NSPredicate+KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/NSString+KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/NSString+KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UIAccessibilityElement-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIAccessibilityElement-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UIApplication-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIApplication-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UIAutomationHelper.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/UIAutomationHelper.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UIEvent+KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIEvent+KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UIScreen+KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIScreen+KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UIScrollView-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIScrollView-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UITableView-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UITableView-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UITouch-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UITouch-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UIView-Debugging.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIView-Debugging.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UIView-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIView-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/UIWindow-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIWindow-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/KIF/XCTestCase-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/XCTestCase-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Private/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/GTScrollNavigationBar/GTScrollNavigationBar.h: -------------------------------------------------------------------------------- 1 | ../../../../../GTScrollNavigationBar/GTScrollNavigationBar.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/CALayer-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/CALayer-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/CGGeometry-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/CGGeometry-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/IOHIDEvent+KIF.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/IOHIDEvent+KIF.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIF.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIF.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIFAccessibilityEnabler.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFAccessibilityEnabler.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIFSystemTestActor.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFSystemTestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIFTestActor.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFTestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIFTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFTestCase.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIFTestStepValidation.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFTestStepValidation.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIFTypist.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFTypist.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIFUIObject.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFUIObject.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIFUITestActor-ConditionalTests.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFUITestActor-ConditionalTests.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIFUITestActor.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFUITestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/KIFUIViewTestActor.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/KIFUIViewTestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/NSBundle-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/NSBundle-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/NSError-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/NSError-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/NSException-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/NSException-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/NSFileManager-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/NSFileManager-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/UIAccessibilityElement-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIAccessibilityElement-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/UIApplication-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIApplication-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/UIAutomationHelper.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Classes/UIAutomationHelper.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/UIScrollView-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIScrollView-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/UITableView-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UITableView-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/UITouch-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UITouch-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/UIView-Debugging.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIView-Debugging.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/UIView-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIView-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/UIWindow-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/UIWindow-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/KIF/XCTestCase-KIFAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../KIF/Additions/XCTestCase-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Headers/Public/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/CAAnimation+KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/CAAnimation+KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/CAAnimation+KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/CAAnimation+KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/CALayer-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/CALayer-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/CALayer-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/CALayer-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/CGGeometry-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/CGGeometry-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/CGGeometry-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/CGGeometry-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/LoadableCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/LoadableCategory.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSBundle-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSBundle-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSBundle-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSBundle-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSError-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSError-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSError-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSError-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSException-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSException-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSException-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSException-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSFileManager-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSFileManager-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSFileManager-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSFileManager-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSPredicate+KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSPredicate+KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSPredicate+KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSPredicate+KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSString+KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSString+KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/NSString+KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/NSString+KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIAccessibilityElement-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIAccessibilityElement-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIAccessibilityElement-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIAccessibilityElement-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIApplication-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIApplication-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIApplication-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIApplication-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIEvent+KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIEvent+KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIEvent+KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIEvent+KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIScreen+KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIScreen+KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIScreen+KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIScreen+KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIScrollView-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIScrollView-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIScrollView-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIScrollView-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UITableView-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UITableView-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UITableView-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UITableView-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UITouch-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UITouch-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UITouch-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UITouch-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIView-Debugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIView-Debugging.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIView-Debugging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIView-Debugging.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIView-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIView-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIView-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIView-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIWindow-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIWindow-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/UIWindow-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/UIWindow-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/XCTestCase-KIFAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/XCTestCase-KIFAdditions.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Additions/XCTestCase-KIFAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Additions/XCTestCase-KIFAdditions.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/IOHIDEvent+KIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/IOHIDEvent+KIF.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/IOHIDEvent+KIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/IOHIDEvent+KIF.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIF.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFAccessibilityEnabler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFAccessibilityEnabler.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFAccessibilityEnabler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFAccessibilityEnabler.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFSystemTestActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFSystemTestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFSystemTestActor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFSystemTestActor.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestActor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestActor.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestCase.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestCase.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestStepValidation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestStepValidation.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestStepValidation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTestStepValidation.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTypist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTypist.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTypist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFTypist.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUIObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUIObject.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUIObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUIObject.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUITestActor-ConditionalTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUITestActor-ConditionalTests.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUITestActor-ConditionalTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUITestActor-ConditionalTests.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUITestActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUITestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUITestActor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUITestActor.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUIViewTestActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUIViewTestActor.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUIViewTestActor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/KIFUIViewTestActor.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/UIAutomationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/UIAutomationHelper.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/Classes/UIAutomationHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/Classes/UIAutomationHelper.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/LICENSE -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/KIF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/KIF/README.md -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Local Podspecs/GTScrollNavigationBar.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Local Podspecs/GTScrollNavigationBar.podspec.json -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Manifest.lock -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/LICENSE -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/README.md -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTCallSite.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTCompiledExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTCompiledExample.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTExample.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTExampleGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTExampleGroup.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTSpec.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTTestSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SPTTestSuite.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SpectaDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SpectaDSL.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SpectaUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/SpectaUtility.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/XCTestCase+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Specta/Specta/Specta/XCTestCase+Specta.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Expecta/Expecta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Expecta/Expecta-dummy.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Expecta/Expecta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Expecta/Expecta-prefix.pch -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Expecta/Expecta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Expecta/Expecta.xcconfig -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/GTScrollNavigationBar/GTScrollNavigationBar-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/GTScrollNavigationBar/GTScrollNavigationBar-dummy.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/GTScrollNavigationBar/GTScrollNavigationBar-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/GTScrollNavigationBar/GTScrollNavigationBar-prefix.pch -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/GTScrollNavigationBar/GTScrollNavigationBar.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/GTScrollNavigationBar/GTScrollNavigationBar.xcconfig -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/KIF/KIF-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/KIF/KIF-dummy.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/KIF/KIF-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/KIF/KIF-prefix.pch -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/KIF/KIF.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/KIF/KIF.xcconfig -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample-acknowledgements.markdown -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample-acknowledgements.plist -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample-dummy.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample-frameworks.sh -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample-resources.sh -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample.debug.xcconfig -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarExample/Pods-GTScrollNavigationBarExample.release.xcconfig -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests-acknowledgements.markdown -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests-acknowledgements.plist -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests-dummy.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests-frameworks.sh -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests-resources.sh -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests.debug.xcconfig -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Pods-GTScrollNavigationBarTests/Pods-GTScrollNavigationBarTests.release.xcconfig -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Specta/Specta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Specta/Specta-dummy.m -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Specta/Specta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Specta/Specta-prefix.pch -------------------------------------------------------------------------------- /GTScrollNavigationBarExample/Pods/Target Support Files/Specta/Specta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/GTScrollNavigationBarExample/Pods/Target Support Files/Specta/Specta.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luugiathuy/GTScrollNavigationBar/HEAD/README.md --------------------------------------------------------------------------------