├── .gitignore ├── .travis.yml ├── Assets ├── colo-github-header.png ├── screenshot1.png ├── screenshot2.png ├── screenshot3.png └── screenshot4.png ├── CHANGELOG.md ├── Colo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Colo.xcworkspace └── contents.xcworkspacedata ├── Colo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── LaunchScreen.xib ├── Constant.h ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon@2x.png │ │ ├── Icon@3x.png │ │ ├── small-40@2x.png │ │ ├── small-40@3x.png │ │ ├── spotlight-29@2x.png │ │ └── spotlight-29@3x.png ├── Info.plist ├── Models │ ├── Colo.xcdatamodeld │ │ └── Colo.xcdatamodel │ │ │ └── contents │ ├── ColorManagerObject.h │ ├── ColorManagerObject.m │ ├── ColorModel.h │ ├── ColorModel.m │ ├── Parser.h │ ├── Parser.m │ ├── SimpleGetHTTPRequest.h │ ├── SimpleGetHTTPRequest.m │ ├── WZCoreDataManager.h │ ├── WZCoreDataManager.m │ └── parser.js ├── ViewControllers │ ├── BaseNavigationController.h │ ├── BaseNavigationController.m │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── FavouriteViewController.h │ ├── FavouriteViewController.m │ ├── PagerViewController.h │ ├── PagerViewController.m │ ├── SettingsViewController.h │ ├── SettingsViewController.m │ ├── SwitchViewController.h │ └── SwitchViewController.m ├── Views │ ├── BouncePresentAnimation.h │ ├── BouncePresentAnimation.m │ ├── ColorCell.h │ ├── ColorCell.m │ ├── MenuView.h │ ├── MenuView.m │ ├── MiniColorCell.h │ ├── MiniColorCell.m │ ├── NormalDismissAnimation.h │ ├── NormalDismissAnimation.m │ ├── SwipeUpInteractionTransition.h │ └── SwipeUpInteractionTransition.m ├── main.m └── resources │ ├── close-black@2x.png │ ├── close-white@2x.png │ ├── gear@2x.png │ ├── heart-selected@2x.png │ ├── heart@2x.png │ ├── star@2x.png │ └── trash@2x.png ├── ColoTests ├── ColoTests.m └── Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ └── Public │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ │ ├── PNChart │ │ ├── PNBar.h │ │ ├── PNBarChart.h │ │ ├── PNChart.h │ │ ├── PNChartDelegate.h │ │ ├── PNChartLabel.h │ │ ├── PNCircleChart.h │ │ ├── PNColor.h │ │ ├── PNGenericChart.h │ │ ├── PNLineChart.h │ │ ├── PNLineChartData.h │ │ ├── PNLineChartDataItem.h │ │ ├── PNPieChart.h │ │ ├── PNPieChartDataItem.h │ │ ├── PNScatterChart.h │ │ ├── PNScatterChartData.h │ │ └── PNScatterChartDataItem.h │ │ ├── Reachability │ │ └── Reachability.h │ │ ├── SWTableViewCell │ │ ├── NSMutableArray+SWUtilityButtons.h │ │ ├── SWCellScrollView.h │ │ ├── SWLongPressGestureRecognizer.h │ │ ├── SWTableViewCell.h │ │ ├── SWUtilityButtonTapGestureRecognizer.h │ │ └── SWUtilityButtonView.h │ │ ├── UICountingLabel │ │ └── UICountingLabel.h │ │ └── hpple │ │ ├── TFHpple.h │ │ ├── TFHppleElement.h │ │ └── XPathQuery.h ├── Local Podspecs │ └── PNChart.podspec ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown ├── Manifest.lock ├── PNChart │ ├── LICENSE │ ├── PNChart │ │ ├── PNBar.h │ │ ├── PNBar.m │ │ ├── PNBarChart.h │ │ ├── PNBarChart.m │ │ ├── PNChart.h │ │ ├── PNChartDelegate.h │ │ ├── PNChartLabel.h │ │ ├── PNChartLabel.m │ │ ├── PNCircleChart.h │ │ ├── PNCircleChart.m │ │ ├── PNColor.h │ │ ├── PNColor.m │ │ ├── PNGenericChart.h │ │ ├── PNGenericChart.m │ │ ├── PNLineChart.h │ │ ├── PNLineChart.m │ │ ├── PNLineChartData.h │ │ ├── PNLineChartData.m │ │ ├── PNLineChartDataItem.h │ │ ├── PNLineChartDataItem.m │ │ ├── PNPieChart.h │ │ ├── PNPieChart.m │ │ ├── PNPieChartDataItem.h │ │ ├── PNPieChartDataItem.m │ │ ├── PNScatterChart.h │ │ ├── PNScatterChart.m │ │ ├── PNScatterChartData.h │ │ ├── PNScatterChartData.m │ │ ├── PNScatterChartDataItem.h │ │ └── PNScatterChartDataItem.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── Reachability │ ├── LICENCE.txt │ ├── README.md │ ├── Reachability.h │ └── Reachability.m ├── SWTableViewCell │ ├── LICENCE │ ├── README.md │ └── SWTableViewCell │ │ └── PodFiles │ │ ├── NSMutableArray+SWUtilityButtons.h │ │ ├── NSMutableArray+SWUtilityButtons.m │ │ ├── SWCellScrollView.h │ │ ├── SWCellScrollView.m │ │ ├── SWLongPressGestureRecognizer.h │ │ ├── SWLongPressGestureRecognizer.m │ │ ├── SWTableViewCell.h │ │ ├── SWTableViewCell.m │ │ ├── SWUtilityButtonTapGestureRecognizer.h │ │ ├── SWUtilityButtonTapGestureRecognizer.m │ │ ├── SWUtilityButtonView.h │ │ └── SWUtilityButtonView.m ├── Target Support Files │ ├── Pods-MBProgressHUD │ │ ├── Pods-MBProgressHUD-Private.xcconfig │ │ ├── Pods-MBProgressHUD-dummy.m │ │ ├── Pods-MBProgressHUD-prefix.pch │ │ └── Pods-MBProgressHUD.xcconfig │ ├── Pods-PNChart │ │ ├── Pods-PNChart-Private.xcconfig │ │ ├── Pods-PNChart-dummy.m │ │ ├── Pods-PNChart-prefix.pch │ │ └── Pods-PNChart.xcconfig │ ├── Pods-Reachability │ │ ├── Pods-Reachability-Private.xcconfig │ │ ├── Pods-Reachability-dummy.m │ │ ├── Pods-Reachability-prefix.pch │ │ └── Pods-Reachability.xcconfig │ ├── Pods-SWTableViewCell │ │ ├── Pods-SWTableViewCell-Private.xcconfig │ │ ├── Pods-SWTableViewCell-dummy.m │ │ ├── Pods-SWTableViewCell-prefix.pch │ │ └── Pods-SWTableViewCell.xcconfig │ ├── Pods-UICountingLabel │ │ ├── Pods-UICountingLabel-Private.xcconfig │ │ ├── Pods-UICountingLabel-dummy.m │ │ ├── Pods-UICountingLabel-prefix.pch │ │ └── Pods-UICountingLabel.xcconfig │ ├── Pods-hpple │ │ ├── Pods-hpple-Private.xcconfig │ │ ├── Pods-hpple-dummy.m │ │ ├── Pods-hpple-prefix.pch │ │ └── Pods-hpple.xcconfig │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig ├── UICountingLabel │ ├── LICENSE │ ├── README.md │ ├── UICountingLabel.h │ └── UICountingLabel.m └── hpple │ ├── LICENSE.txt │ ├── README.markdown │ ├── TFHpple.h │ ├── TFHpple.m │ ├── TFHppleElement.h │ ├── TFHppleElement.m │ ├── XPathQuery.h │ └── XPathQuery.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | -------------------------------------------------------------------------------- /Assets/colo-github-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Assets/colo-github-header.png -------------------------------------------------------------------------------- /Assets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Assets/screenshot1.png -------------------------------------------------------------------------------- /Assets/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Assets/screenshot2.png -------------------------------------------------------------------------------- /Assets/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Assets/screenshot3.png -------------------------------------------------------------------------------- /Assets/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Assets/screenshot4.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ##0.0.1 Pre-release(18/03/2015) 2 | - Cocoapods Support 3 | - Add MBProgressHUD 4 | 5 | -------------------------------------------------------------------------------- /Colo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Colo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Colo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Colo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/AppDelegate.h -------------------------------------------------------------------------------- /Colo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/AppDelegate.m -------------------------------------------------------------------------------- /Colo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Colo/Constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Constant.h -------------------------------------------------------------------------------- /Colo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Colo/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /Colo/Images.xcassets/AppIcon.appiconset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Images.xcassets/AppIcon.appiconset/Icon@3x.png -------------------------------------------------------------------------------- /Colo/Images.xcassets/AppIcon.appiconset/small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Images.xcassets/AppIcon.appiconset/small-40@2x.png -------------------------------------------------------------------------------- /Colo/Images.xcassets/AppIcon.appiconset/small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Images.xcassets/AppIcon.appiconset/small-40@3x.png -------------------------------------------------------------------------------- /Colo/Images.xcassets/AppIcon.appiconset/spotlight-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Images.xcassets/AppIcon.appiconset/spotlight-29@2x.png -------------------------------------------------------------------------------- /Colo/Images.xcassets/AppIcon.appiconset/spotlight-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Images.xcassets/AppIcon.appiconset/spotlight-29@3x.png -------------------------------------------------------------------------------- /Colo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Info.plist -------------------------------------------------------------------------------- /Colo/Models/Colo.xcdatamodeld/Colo.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/Colo.xcdatamodeld/Colo.xcdatamodel/contents -------------------------------------------------------------------------------- /Colo/Models/ColorManagerObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/ColorManagerObject.h -------------------------------------------------------------------------------- /Colo/Models/ColorManagerObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/ColorManagerObject.m -------------------------------------------------------------------------------- /Colo/Models/ColorModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/ColorModel.h -------------------------------------------------------------------------------- /Colo/Models/ColorModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/ColorModel.m -------------------------------------------------------------------------------- /Colo/Models/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/Parser.h -------------------------------------------------------------------------------- /Colo/Models/Parser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/Parser.m -------------------------------------------------------------------------------- /Colo/Models/SimpleGetHTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/SimpleGetHTTPRequest.h -------------------------------------------------------------------------------- /Colo/Models/SimpleGetHTTPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/SimpleGetHTTPRequest.m -------------------------------------------------------------------------------- /Colo/Models/WZCoreDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/WZCoreDataManager.h -------------------------------------------------------------------------------- /Colo/Models/WZCoreDataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/WZCoreDataManager.m -------------------------------------------------------------------------------- /Colo/Models/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Models/parser.js -------------------------------------------------------------------------------- /Colo/ViewControllers/BaseNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/BaseNavigationController.h -------------------------------------------------------------------------------- /Colo/ViewControllers/BaseNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/BaseNavigationController.m -------------------------------------------------------------------------------- /Colo/ViewControllers/CollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/CollectionViewController.h -------------------------------------------------------------------------------- /Colo/ViewControllers/CollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/CollectionViewController.m -------------------------------------------------------------------------------- /Colo/ViewControllers/DetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/DetailViewController.h -------------------------------------------------------------------------------- /Colo/ViewControllers/DetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/DetailViewController.m -------------------------------------------------------------------------------- /Colo/ViewControllers/FavouriteViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/FavouriteViewController.h -------------------------------------------------------------------------------- /Colo/ViewControllers/FavouriteViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/FavouriteViewController.m -------------------------------------------------------------------------------- /Colo/ViewControllers/PagerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/PagerViewController.h -------------------------------------------------------------------------------- /Colo/ViewControllers/PagerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/PagerViewController.m -------------------------------------------------------------------------------- /Colo/ViewControllers/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/SettingsViewController.h -------------------------------------------------------------------------------- /Colo/ViewControllers/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/SettingsViewController.m -------------------------------------------------------------------------------- /Colo/ViewControllers/SwitchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/SwitchViewController.h -------------------------------------------------------------------------------- /Colo/ViewControllers/SwitchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/ViewControllers/SwitchViewController.m -------------------------------------------------------------------------------- /Colo/Views/BouncePresentAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/BouncePresentAnimation.h -------------------------------------------------------------------------------- /Colo/Views/BouncePresentAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/BouncePresentAnimation.m -------------------------------------------------------------------------------- /Colo/Views/ColorCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/ColorCell.h -------------------------------------------------------------------------------- /Colo/Views/ColorCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/ColorCell.m -------------------------------------------------------------------------------- /Colo/Views/MenuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/MenuView.h -------------------------------------------------------------------------------- /Colo/Views/MenuView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/MenuView.m -------------------------------------------------------------------------------- /Colo/Views/MiniColorCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/MiniColorCell.h -------------------------------------------------------------------------------- /Colo/Views/MiniColorCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/MiniColorCell.m -------------------------------------------------------------------------------- /Colo/Views/NormalDismissAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/NormalDismissAnimation.h -------------------------------------------------------------------------------- /Colo/Views/NormalDismissAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/NormalDismissAnimation.m -------------------------------------------------------------------------------- /Colo/Views/SwipeUpInteractionTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/SwipeUpInteractionTransition.h -------------------------------------------------------------------------------- /Colo/Views/SwipeUpInteractionTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/Views/SwipeUpInteractionTransition.m -------------------------------------------------------------------------------- /Colo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/main.m -------------------------------------------------------------------------------- /Colo/resources/close-black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/resources/close-black@2x.png -------------------------------------------------------------------------------- /Colo/resources/close-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/resources/close-white@2x.png -------------------------------------------------------------------------------- /Colo/resources/gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/resources/gear@2x.png -------------------------------------------------------------------------------- /Colo/resources/heart-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/resources/heart-selected@2x.png -------------------------------------------------------------------------------- /Colo/resources/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/resources/heart@2x.png -------------------------------------------------------------------------------- /Colo/resources/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/resources/star@2x.png -------------------------------------------------------------------------------- /Colo/resources/trash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Colo/resources/trash@2x.png -------------------------------------------------------------------------------- /ColoTests/ColoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/ColoTests/ColoTests.m -------------------------------------------------------------------------------- /ColoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/ColoTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNBar.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNBar.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNBarChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNBarChart.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChart.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNChartDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChartDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNChartLabel.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChartLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNCircleChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNCircleChart.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNColor.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNColor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNGenericChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNGenericChart.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNLineChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChart.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNLineChartData.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChartData.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNLineChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChartDataItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNPieChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNPieChart.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNPieChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNPieChartDataItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNScatterChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChart.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNScatterChartData.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChartData.h -------------------------------------------------------------------------------- /Pods/Headers/Public/PNChart/PNScatterChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChartDataItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Reachability/Reachability.h: -------------------------------------------------------------------------------- 1 | ../../../Reachability/Reachability.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SWTableViewCell/NSMutableArray+SWUtilityButtons.h: -------------------------------------------------------------------------------- 1 | ../../../SWTableViewCell/SWTableViewCell/PodFiles/NSMutableArray+SWUtilityButtons.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SWTableViewCell/SWCellScrollView.h: -------------------------------------------------------------------------------- 1 | ../../../SWTableViewCell/SWTableViewCell/PodFiles/SWCellScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SWTableViewCell/SWLongPressGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | ../../../SWTableViewCell/SWTableViewCell/PodFiles/SWLongPressGestureRecognizer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SWTableViewCell/SWTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../SWTableViewCell/SWTableViewCell/PodFiles/SWTableViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SWTableViewCell/SWUtilityButtonTapGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | ../../../SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SWTableViewCell/SWUtilityButtonView.h: -------------------------------------------------------------------------------- 1 | ../../../SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/UICountingLabel/UICountingLabel.h: -------------------------------------------------------------------------------- 1 | ../../../UICountingLabel/UICountingLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/hpple/TFHpple.h: -------------------------------------------------------------------------------- 1 | ../../../hpple/TFHpple.h -------------------------------------------------------------------------------- /Pods/Headers/Public/hpple/TFHppleElement.h: -------------------------------------------------------------------------------- 1 | ../../../hpple/TFHppleElement.h -------------------------------------------------------------------------------- /Pods/Headers/Public/hpple/XPathQuery.h: -------------------------------------------------------------------------------- 1 | ../../../hpple/XPathQuery.h -------------------------------------------------------------------------------- /Pods/Local Podspecs/PNChart.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Local Podspecs/PNChart.podspec -------------------------------------------------------------------------------- /Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/PNChart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/LICENSE -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNBar.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNBar.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNBarChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNBarChart.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNBarChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNBarChart.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNChart.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNChartDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNChartDelegate.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNChartLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNChartLabel.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNChartLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNChartLabel.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNCircleChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNCircleChart.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNCircleChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNCircleChart.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNColor.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNColor.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNGenericChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNGenericChart.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNGenericChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNGenericChart.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNLineChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNLineChart.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNLineChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNLineChart.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNLineChartData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNLineChartData.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNLineChartData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNLineChartData.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNLineChartDataItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNLineChartDataItem.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNLineChartDataItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNLineChartDataItem.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNPieChart.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNPieChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNPieChart.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNPieChartDataItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNPieChartDataItem.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNPieChartDataItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNPieChartDataItem.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNScatterChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNScatterChart.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNScatterChart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNScatterChart.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNScatterChartData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNScatterChartData.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNScatterChartData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNScatterChartData.m -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNScatterChartDataItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNScatterChartDataItem.h -------------------------------------------------------------------------------- /Pods/PNChart/PNChart/PNScatterChartDataItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/PNChart/PNScatterChartDataItem.m -------------------------------------------------------------------------------- /Pods/PNChart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/PNChart/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Reachability/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Reachability/LICENCE.txt -------------------------------------------------------------------------------- /Pods/Reachability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Reachability/README.md -------------------------------------------------------------------------------- /Pods/Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Reachability/Reachability.h -------------------------------------------------------------------------------- /Pods/Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Reachability/Reachability.m -------------------------------------------------------------------------------- /Pods/SWTableViewCell/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/LICENCE -------------------------------------------------------------------------------- /Pods/SWTableViewCell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/README.md -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/NSMutableArray+SWUtilityButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/NSMutableArray+SWUtilityButtons.h -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/NSMutableArray+SWUtilityButtons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/NSMutableArray+SWUtilityButtons.m -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWCellScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWCellScrollView.h -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWCellScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWCellScrollView.m -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWLongPressGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWLongPressGestureRecognizer.h -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWLongPressGestureRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWLongPressGestureRecognizer.m -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWTableViewCell.h -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWTableViewCell.m -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.h -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonTapGestureRecognizer.m -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonView.h -------------------------------------------------------------------------------- /Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/SWTableViewCell/SWTableViewCell/PodFiles/SWUtilityButtonView.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_MBPROGRESSHUD_OTHER_LDFLAGS = -framework "CoreGraphics" -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PNChart/Pods-PNChart-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-PNChart/Pods-PNChart-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PNChart/Pods-PNChart-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-PNChart/Pods-PNChart-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PNChart/Pods-PNChart-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-PNChart/Pods-PNChart-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-PNChart/Pods-PNChart.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-PNChart/Pods-PNChart.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Reachability/Pods-Reachability-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-Reachability/Pods-Reachability-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Reachability/Pods-Reachability-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-Reachability/Pods-Reachability-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Reachability/Pods-Reachability-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-Reachability/Pods-Reachability-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Reachability/Pods-Reachability.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_REACHABILITY_OTHER_LDFLAGS = -framework "SystemConfiguration" -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SWTableViewCell/Pods-SWTableViewCell-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-SWTableViewCell/Pods-SWTableViewCell-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SWTableViewCell/Pods-SWTableViewCell-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-SWTableViewCell/Pods-SWTableViewCell-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SWTableViewCell/Pods-SWTableViewCell-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-SWTableViewCell/Pods-SWTableViewCell-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SWTableViewCell/Pods-SWTableViewCell.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UICountingLabel/Pods-UICountingLabel-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-UICountingLabel/Pods-UICountingLabel-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UICountingLabel/Pods-UICountingLabel-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-UICountingLabel/Pods-UICountingLabel-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UICountingLabel/Pods-UICountingLabel-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-UICountingLabel/Pods-UICountingLabel-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-UICountingLabel/Pods-UICountingLabel.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-hpple/Pods-hpple-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-hpple/Pods-hpple-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-hpple/Pods-hpple-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-hpple/Pods-hpple-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-hpple/Pods-hpple-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-hpple/Pods-hpple-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-hpple/Pods-hpple.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods-hpple/Pods-hpple.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Pods/UICountingLabel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/UICountingLabel/LICENSE -------------------------------------------------------------------------------- /Pods/UICountingLabel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/UICountingLabel/README.md -------------------------------------------------------------------------------- /Pods/UICountingLabel/UICountingLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/UICountingLabel/UICountingLabel.h -------------------------------------------------------------------------------- /Pods/UICountingLabel/UICountingLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/UICountingLabel/UICountingLabel.m -------------------------------------------------------------------------------- /Pods/hpple/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/hpple/LICENSE.txt -------------------------------------------------------------------------------- /Pods/hpple/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/hpple/README.markdown -------------------------------------------------------------------------------- /Pods/hpple/TFHpple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/hpple/TFHpple.h -------------------------------------------------------------------------------- /Pods/hpple/TFHpple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/hpple/TFHpple.m -------------------------------------------------------------------------------- /Pods/hpple/TFHppleElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/hpple/TFHppleElement.h -------------------------------------------------------------------------------- /Pods/hpple/TFHppleElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/hpple/TFHppleElement.m -------------------------------------------------------------------------------- /Pods/hpple/XPathQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/hpple/XPathQuery.h -------------------------------------------------------------------------------- /Pods/hpple/XPathQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/Pods/hpple/XPathQuery.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wongzigii/Colo/HEAD/README.md --------------------------------------------------------------------------------