├── .gitignore ├── .travis.yml ├── Example ├── HLJStatistical.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── HLJStatistical-Example.xcscheme ├── HLJStatistical │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── HLJAppDelegate.h │ ├── HLJAppDelegate.m │ ├── HLJStatistical-Info.plist │ ├── HLJStatistical-Prefix.pch │ ├── HLJTest1ViewController.h │ ├── HLJTest1ViewController.m │ ├── HLJTestViewController.h │ ├── HLJTestViewController.m │ ├── HLJViewController.h │ ├── HLJViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── HLJStatistical.podspec ├── HLJStatistical ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── HLJViewTrackModel.h │ ├── HLJViewTrackModel.m │ ├── UIView+Statistical.h │ └── UIView+Statistical.m ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/HLJStatistical.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/HLJStatistical.xcodeproj/xcshareddata/xcschemes/HLJStatistical-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical.xcodeproj/xcshareddata/xcschemes/HLJStatistical-Example.xcscheme -------------------------------------------------------------------------------- /Example/HLJStatistical/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/HLJStatistical/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/HLJStatistical/HLJAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/HLJAppDelegate.h -------------------------------------------------------------------------------- /Example/HLJStatistical/HLJAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/HLJAppDelegate.m -------------------------------------------------------------------------------- /Example/HLJStatistical/HLJStatistical-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/HLJStatistical-Info.plist -------------------------------------------------------------------------------- /Example/HLJStatistical/HLJStatistical-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/HLJStatistical-Prefix.pch -------------------------------------------------------------------------------- /Example/HLJStatistical/HLJTest1ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/HLJTest1ViewController.h -------------------------------------------------------------------------------- /Example/HLJStatistical/HLJTest1ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/HLJTest1ViewController.m -------------------------------------------------------------------------------- /Example/HLJStatistical/HLJTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/HLJTestViewController.h -------------------------------------------------------------------------------- /Example/HLJStatistical/HLJTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/HLJTestViewController.m -------------------------------------------------------------------------------- /Example/HLJStatistical/HLJViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/HLJViewController.h -------------------------------------------------------------------------------- /Example/HLJStatistical/HLJViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/HLJViewController.m -------------------------------------------------------------------------------- /Example/HLJStatistical/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/HLJStatistical/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/HLJStatistical/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/HLJStatistical/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /HLJStatistical.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/HLJStatistical.podspec -------------------------------------------------------------------------------- /HLJStatistical/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HLJStatistical/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HLJStatistical/Classes/HLJViewTrackModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/HLJStatistical/Classes/HLJViewTrackModel.h -------------------------------------------------------------------------------- /HLJStatistical/Classes/HLJViewTrackModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/HLJStatistical/Classes/HLJViewTrackModel.m -------------------------------------------------------------------------------- /HLJStatistical/Classes/UIView+Statistical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/HLJStatistical/Classes/UIView+Statistical.h -------------------------------------------------------------------------------- /HLJStatistical/Classes/UIView+Statistical.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/HLJStatistical/Classes/UIView+Statistical.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BulletWu/HLJStatistical/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------