├── .DS_Store ├── .gitattributes ├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── ZXSegmentController.podspec.json │ ├── Manifest.lock │ ├── Masonry │ │ ├── LICENSE │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASCompositeConstraint.m │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraint.m │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASConstraintMaker.m │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASLayoutConstraint.m │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewAttribute.m │ │ │ ├── MASViewConstraint.h │ │ │ ├── MASViewConstraint.m │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASAdditions.m │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASAdditions.m │ │ │ ├── View+MASShorthandAdditions.h │ │ │ ├── ViewController+MASAdditions.h │ │ │ └── ViewController+MASAdditions.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Masonry │ │ ├── Info.plist │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ ├── Masonry-umbrella.h │ │ ├── Masonry.modulemap │ │ └── Masonry.xcconfig │ │ ├── Pods-ZXSegmentController_Example │ │ ├── Info.plist │ │ ├── Pods-ZXSegmentController_Example-acknowledgements.markdown │ │ ├── Pods-ZXSegmentController_Example-acknowledgements.plist │ │ ├── Pods-ZXSegmentController_Example-dummy.m │ │ ├── Pods-ZXSegmentController_Example-frameworks.sh │ │ ├── Pods-ZXSegmentController_Example-resources.sh │ │ ├── Pods-ZXSegmentController_Example-umbrella.h │ │ ├── Pods-ZXSegmentController_Example.debug.xcconfig │ │ ├── Pods-ZXSegmentController_Example.modulemap │ │ └── Pods-ZXSegmentController_Example.release.xcconfig │ │ ├── Pods-ZXSegmentController_Tests │ │ ├── Info.plist │ │ ├── Pods-ZXSegmentController_Tests-acknowledgements.markdown │ │ ├── Pods-ZXSegmentController_Tests-acknowledgements.plist │ │ ├── Pods-ZXSegmentController_Tests-dummy.m │ │ ├── Pods-ZXSegmentController_Tests-frameworks.sh │ │ ├── Pods-ZXSegmentController_Tests-resources.sh │ │ ├── Pods-ZXSegmentController_Tests-umbrella.h │ │ ├── Pods-ZXSegmentController_Tests.debug.xcconfig │ │ ├── Pods-ZXSegmentController_Tests.modulemap │ │ └── Pods-ZXSegmentController_Tests.release.xcconfig │ │ └── ZXSegmentController │ │ ├── Info.plist │ │ ├── ZXSegmentController-dummy.m │ │ ├── ZXSegmentController-prefix.pch │ │ ├── ZXSegmentController-umbrella.h │ │ ├── ZXSegmentController.modulemap │ │ └── ZXSegmentController.xcconfig ├── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── ZXSegmentController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ZXSegmentController-Example.xcscheme ├── ZXSegmentController.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── ZXSegmentController │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── ZXAppDelegate.h │ ├── ZXAppDelegate.m │ ├── ZXSegmentController-Info.plist │ ├── ZXSegmentController-Prefix.pch │ ├── ZXViewController.h │ ├── ZXViewController.m │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── LICENSE ├── README.md ├── ZXSegmentController.podspec ├── ZXSegmentController ├── .DS_Store ├── Assets │ └── .gitkeep └── Classes │ ├── .DS_Store │ ├── .gitkeep │ ├── UIColor+RGB.h │ ├── UIColor+RGB.m │ ├── ZXSegmentController.h │ ├── ZXSegmentController.m │ ├── ZXSegmentHeaderCell.h │ ├── ZXSegmentHeaderCell.m │ ├── ZXSegmentHeaderModel.h │ ├── ZXSegmentHeaderModel.m │ ├── ZXSegmentHeaderView.h │ └── ZXSegmentHeaderView.m ├── _Pods.xcodeproj └── 示例动画.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ZXSegmentController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Local Podspecs/ZXSegmentController.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Masonry/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Example/Pods-ZXSegmentController_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/Pods-ZXSegmentController_Tests/Pods-ZXSegmentController_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZXSegmentController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/ZXSegmentController/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZXSegmentController/ZXSegmentController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/ZXSegmentController/ZXSegmentController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZXSegmentController/ZXSegmentController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/ZXSegmentController/ZXSegmentController-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZXSegmentController/ZXSegmentController-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/ZXSegmentController/ZXSegmentController-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZXSegmentController/ZXSegmentController.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/ZXSegmentController/ZXSegmentController.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZXSegmentController/ZXSegmentController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Pods/Target Support Files/ZXSegmentController/ZXSegmentController.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ZXSegmentController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ZXSegmentController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ZXSegmentController.xcodeproj/xcshareddata/xcschemes/ZXSegmentController-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController.xcodeproj/xcshareddata/xcschemes/ZXSegmentController-Example.xcscheme -------------------------------------------------------------------------------- /Example/ZXSegmentController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ZXSegmentController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ZXSegmentController/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ZXSegmentController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ZXSegmentController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ZXSegmentController/ZXAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController/ZXAppDelegate.h -------------------------------------------------------------------------------- /Example/ZXSegmentController/ZXAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController/ZXAppDelegate.m -------------------------------------------------------------------------------- /Example/ZXSegmentController/ZXSegmentController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController/ZXSegmentController-Info.plist -------------------------------------------------------------------------------- /Example/ZXSegmentController/ZXSegmentController-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController/ZXSegmentController-Prefix.pch -------------------------------------------------------------------------------- /Example/ZXSegmentController/ZXViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController/ZXViewController.h -------------------------------------------------------------------------------- /Example/ZXSegmentController/ZXViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController/ZXViewController.m -------------------------------------------------------------------------------- /Example/ZXSegmentController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ZXSegmentController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/Example/ZXSegmentController/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/README.md -------------------------------------------------------------------------------- /ZXSegmentController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController.podspec -------------------------------------------------------------------------------- /ZXSegmentController/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/.DS_Store -------------------------------------------------------------------------------- /ZXSegmentController/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZXSegmentController/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/.DS_Store -------------------------------------------------------------------------------- /ZXSegmentController/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZXSegmentController/Classes/UIColor+RGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/UIColor+RGB.h -------------------------------------------------------------------------------- /ZXSegmentController/Classes/UIColor+RGB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/UIColor+RGB.m -------------------------------------------------------------------------------- /ZXSegmentController/Classes/ZXSegmentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/ZXSegmentController.h -------------------------------------------------------------------------------- /ZXSegmentController/Classes/ZXSegmentController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/ZXSegmentController.m -------------------------------------------------------------------------------- /ZXSegmentController/Classes/ZXSegmentHeaderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/ZXSegmentHeaderCell.h -------------------------------------------------------------------------------- /ZXSegmentController/Classes/ZXSegmentHeaderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/ZXSegmentHeaderCell.m -------------------------------------------------------------------------------- /ZXSegmentController/Classes/ZXSegmentHeaderModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/ZXSegmentHeaderModel.h -------------------------------------------------------------------------------- /ZXSegmentController/Classes/ZXSegmentHeaderModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/ZXSegmentHeaderModel.m -------------------------------------------------------------------------------- /ZXSegmentController/Classes/ZXSegmentHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/ZXSegmentHeaderView.h -------------------------------------------------------------------------------- /ZXSegmentController/Classes/ZXSegmentHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/ZXSegmentController/Classes/ZXSegmentHeaderView.m -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /示例动画.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzx951753/ZXSegmentController/HEAD/示例动画.gif --------------------------------------------------------------------------------