├── LiuXSegment.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── liuxin.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── liuxin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── LiuXSegment.xcscheme │ └── xcschememanagement.plist ├── LiuXSegment ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LXSegment │ ├── Category │ │ ├── CALayer+LXAdd.h │ │ ├── CALayer+LXAdd.m │ │ ├── NSString+Size.h │ │ └── NSString+Size.m │ ├── LXSegmentScrollView.h │ ├── LXSegmentScrollView.m │ ├── LiuXSegmentView.h │ └── LiuXSegmentView.m ├── ViewController.h ├── ViewController.m └── main.m ├── LiuXSegmentTests ├── Info.plist └── LiuXSegmentTests.m ├── LiuXSegmentUITests ├── Info.plist └── LiuXSegmentUITests.m └── README.md /LiuXSegment.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LiuXSegment.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LiuXSegment.xcodeproj/project.xcworkspace/xcuserdata/liuxin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment.xcodeproj/project.xcworkspace/xcuserdata/liuxin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LiuXSegment.xcodeproj/xcuserdata/liuxin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment.xcodeproj/xcuserdata/liuxin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LiuXSegment.xcodeproj/xcuserdata/liuxin.xcuserdatad/xcschemes/LiuXSegment.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment.xcodeproj/xcuserdata/liuxin.xcuserdatad/xcschemes/LiuXSegment.xcscheme -------------------------------------------------------------------------------- /LiuXSegment.xcodeproj/xcuserdata/liuxin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment.xcodeproj/xcuserdata/liuxin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LiuXSegment/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/AppDelegate.h -------------------------------------------------------------------------------- /LiuXSegment/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/AppDelegate.m -------------------------------------------------------------------------------- /LiuXSegment/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LiuXSegment/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LiuXSegment/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LiuXSegment/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/Info.plist -------------------------------------------------------------------------------- /LiuXSegment/LXSegment/Category/CALayer+LXAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/LXSegment/Category/CALayer+LXAdd.h -------------------------------------------------------------------------------- /LiuXSegment/LXSegment/Category/CALayer+LXAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/LXSegment/Category/CALayer+LXAdd.m -------------------------------------------------------------------------------- /LiuXSegment/LXSegment/Category/NSString+Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/LXSegment/Category/NSString+Size.h -------------------------------------------------------------------------------- /LiuXSegment/LXSegment/Category/NSString+Size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/LXSegment/Category/NSString+Size.m -------------------------------------------------------------------------------- /LiuXSegment/LXSegment/LXSegmentScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/LXSegment/LXSegmentScrollView.h -------------------------------------------------------------------------------- /LiuXSegment/LXSegment/LXSegmentScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/LXSegment/LXSegmentScrollView.m -------------------------------------------------------------------------------- /LiuXSegment/LXSegment/LiuXSegmentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/LXSegment/LiuXSegmentView.h -------------------------------------------------------------------------------- /LiuXSegment/LXSegment/LiuXSegmentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/LXSegment/LiuXSegmentView.m -------------------------------------------------------------------------------- /LiuXSegment/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/ViewController.h -------------------------------------------------------------------------------- /LiuXSegment/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/ViewController.m -------------------------------------------------------------------------------- /LiuXSegment/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegment/main.m -------------------------------------------------------------------------------- /LiuXSegmentTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegmentTests/Info.plist -------------------------------------------------------------------------------- /LiuXSegmentTests/LiuXSegmentTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegmentTests/LiuXSegmentTests.m -------------------------------------------------------------------------------- /LiuXSegmentUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegmentUITests/Info.plist -------------------------------------------------------------------------------- /LiuXSegmentUITests/LiuXSegmentUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/LiuXSegmentUITests/LiuXSegmentUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinge1/LiuXSegment/HEAD/README.md --------------------------------------------------------------------------------