├── CustomRulerView ├── CustomRulerView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── apple.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── apple.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── CustomRulerView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── View │ ├── RulerCollectionViewCell.h │ ├── RulerCollectionViewCell.m │ ├── RulerLayout.h │ ├── RulerLayout.m │ ├── RulerView.h │ └── RulerView.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── README.md /CustomRulerView/CustomRulerView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/AppDelegate.h -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/AppDelegate.m -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/Info.plist -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/View/RulerCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/View/RulerCollectionViewCell.h -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/View/RulerCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/View/RulerCollectionViewCell.m -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/View/RulerLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/View/RulerLayout.h -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/View/RulerLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/View/RulerLayout.m -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/View/RulerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/View/RulerView.h -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/View/RulerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/View/RulerView.m -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/ViewController.h -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/ViewController.m -------------------------------------------------------------------------------- /CustomRulerView/CustomRulerView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/concerned123/CustomRulerView/HEAD/CustomRulerView/CustomRulerView/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CustomRulerView 2 | iOS自定义刻度尺 3 | --------------------------------------------------------------------------------