├── .gitignore ├── LICENSE ├── README.md └── ScrollRulerViewDemo ├── ScrollRulerViewDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── ScrollRulerViewDemo ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── ViewController.swift └── class └── TDScrollRulerView.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/README.md -------------------------------------------------------------------------------- /ScrollRulerViewDemo/ScrollRulerViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/ScrollRulerViewDemo/ScrollRulerViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScrollRulerViewDemo/ScrollRulerViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/ScrollRulerViewDemo/ScrollRulerViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScrollRulerViewDemo/ScrollRulerViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/ScrollRulerViewDemo/ScrollRulerViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ScrollRulerViewDemo/ScrollRulerViewDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/ScrollRulerViewDemo/ScrollRulerViewDemo/AppDelegate.swift -------------------------------------------------------------------------------- /ScrollRulerViewDemo/ScrollRulerViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/ScrollRulerViewDemo/ScrollRulerViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ScrollRulerViewDemo/ScrollRulerViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/ScrollRulerViewDemo/ScrollRulerViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ScrollRulerViewDemo/ScrollRulerViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/ScrollRulerViewDemo/ScrollRulerViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ScrollRulerViewDemo/ScrollRulerViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/ScrollRulerViewDemo/ScrollRulerViewDemo/Info.plist -------------------------------------------------------------------------------- /ScrollRulerViewDemo/ScrollRulerViewDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/ScrollRulerViewDemo/ScrollRulerViewDemo/ViewController.swift -------------------------------------------------------------------------------- /ScrollRulerViewDemo/ScrollRulerViewDemo/class/TDScrollRulerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilongLi/ScrollRulerView/HEAD/ScrollRulerViewDemo/ScrollRulerViewDemo/class/TDScrollRulerView.swift --------------------------------------------------------------------------------