├── .gitignore ├── ChartLoot.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ChartLoot.xcworkspace └── contents.xcworkspacedata ├── ChartLoot ├── AppDelegate.h ├── AppDelegate.m ├── ApplicationViewController.h ├── ApplicationViewController.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── ChartboostAPIClient.h ├── ChartboostAPIClient.m ├── HelpViewController.h ├── HelpViewController.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_120-1.png │ │ ├── icon_120.png │ │ ├── icon_180.png │ │ ├── icon_58.png │ │ ├── icon_80.png │ │ └── icon_87.png ├── Info.plist ├── LoginViewController.h ├── LoginViewController.m ├── MasterViewController.h ├── MasterViewController.m ├── Model │ ├── Account.h │ ├── Account.m │ ├── ApplicationMetrics.h │ ├── ApplicationMetrics.m │ ├── ChartboostApplication.h │ └── ChartboostApplication.m ├── Resources │ ├── Icons │ │ ├── icon_120.png │ │ ├── icon_180.png │ │ ├── icon_58.png │ │ ├── icon_80.png │ │ └── icon_87.png │ ├── Images │ │ └── default_cell.png │ └── Web │ │ └── help.html ├── SettingsViewController.h ├── SettingsViewController.m ├── Utils │ ├── UIImageView+ChartboostApplication.h │ └── UIImageView+ChartboostApplication.m ├── View │ ├── ChartboostApplicationTableViewCell.h │ └── ChartboostApplicationTableViewCell.m └── main.m ├── ChartLootTests ├── ChartLootTests.m └── Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md └── Screenshots ├── 00.png ├── 01.png └── 02.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/.gitignore -------------------------------------------------------------------------------- /ChartLoot.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChartLoot.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChartLoot.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChartLoot/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/AppDelegate.h -------------------------------------------------------------------------------- /ChartLoot/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/AppDelegate.m -------------------------------------------------------------------------------- /ChartLoot/ApplicationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/ApplicationViewController.h -------------------------------------------------------------------------------- /ChartLoot/ApplicationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/ApplicationViewController.m -------------------------------------------------------------------------------- /ChartLoot/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ChartLoot/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ChartLoot/ChartboostAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/ChartboostAPIClient.h -------------------------------------------------------------------------------- /ChartLoot/ChartboostAPIClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/ChartboostAPIClient.m -------------------------------------------------------------------------------- /ChartLoot/HelpViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/HelpViewController.h -------------------------------------------------------------------------------- /ChartLoot/HelpViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/HelpViewController.m -------------------------------------------------------------------------------- /ChartLoot/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChartLoot/Images.xcassets/AppIcon.appiconset/icon_120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Images.xcassets/AppIcon.appiconset/icon_120-1.png -------------------------------------------------------------------------------- /ChartLoot/Images.xcassets/AppIcon.appiconset/icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Images.xcassets/AppIcon.appiconset/icon_120.png -------------------------------------------------------------------------------- /ChartLoot/Images.xcassets/AppIcon.appiconset/icon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Images.xcassets/AppIcon.appiconset/icon_180.png -------------------------------------------------------------------------------- /ChartLoot/Images.xcassets/AppIcon.appiconset/icon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Images.xcassets/AppIcon.appiconset/icon_58.png -------------------------------------------------------------------------------- /ChartLoot/Images.xcassets/AppIcon.appiconset/icon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Images.xcassets/AppIcon.appiconset/icon_80.png -------------------------------------------------------------------------------- /ChartLoot/Images.xcassets/AppIcon.appiconset/icon_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Images.xcassets/AppIcon.appiconset/icon_87.png -------------------------------------------------------------------------------- /ChartLoot/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Info.plist -------------------------------------------------------------------------------- /ChartLoot/LoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/LoginViewController.h -------------------------------------------------------------------------------- /ChartLoot/LoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/LoginViewController.m -------------------------------------------------------------------------------- /ChartLoot/MasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/MasterViewController.h -------------------------------------------------------------------------------- /ChartLoot/MasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/MasterViewController.m -------------------------------------------------------------------------------- /ChartLoot/Model/Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Model/Account.h -------------------------------------------------------------------------------- /ChartLoot/Model/Account.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Model/Account.m -------------------------------------------------------------------------------- /ChartLoot/Model/ApplicationMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Model/ApplicationMetrics.h -------------------------------------------------------------------------------- /ChartLoot/Model/ApplicationMetrics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Model/ApplicationMetrics.m -------------------------------------------------------------------------------- /ChartLoot/Model/ChartboostApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Model/ChartboostApplication.h -------------------------------------------------------------------------------- /ChartLoot/Model/ChartboostApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Model/ChartboostApplication.m -------------------------------------------------------------------------------- /ChartLoot/Resources/Icons/icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Resources/Icons/icon_120.png -------------------------------------------------------------------------------- /ChartLoot/Resources/Icons/icon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Resources/Icons/icon_180.png -------------------------------------------------------------------------------- /ChartLoot/Resources/Icons/icon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Resources/Icons/icon_58.png -------------------------------------------------------------------------------- /ChartLoot/Resources/Icons/icon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Resources/Icons/icon_80.png -------------------------------------------------------------------------------- /ChartLoot/Resources/Icons/icon_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Resources/Icons/icon_87.png -------------------------------------------------------------------------------- /ChartLoot/Resources/Images/default_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Resources/Images/default_cell.png -------------------------------------------------------------------------------- /ChartLoot/Resources/Web/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Resources/Web/help.html -------------------------------------------------------------------------------- /ChartLoot/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/SettingsViewController.h -------------------------------------------------------------------------------- /ChartLoot/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/SettingsViewController.m -------------------------------------------------------------------------------- /ChartLoot/Utils/UIImageView+ChartboostApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Utils/UIImageView+ChartboostApplication.h -------------------------------------------------------------------------------- /ChartLoot/Utils/UIImageView+ChartboostApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/Utils/UIImageView+ChartboostApplication.m -------------------------------------------------------------------------------- /ChartLoot/View/ChartboostApplicationTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/View/ChartboostApplicationTableViewCell.h -------------------------------------------------------------------------------- /ChartLoot/View/ChartboostApplicationTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/View/ChartboostApplicationTableViewCell.m -------------------------------------------------------------------------------- /ChartLoot/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLoot/main.m -------------------------------------------------------------------------------- /ChartLootTests/ChartLootTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLootTests/ChartLootTests.m -------------------------------------------------------------------------------- /ChartLootTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/ChartLootTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/Screenshots/00.png -------------------------------------------------------------------------------- /Screenshots/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/Screenshots/01.png -------------------------------------------------------------------------------- /Screenshots/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurGuibert/ChartLoot/HEAD/Screenshots/02.png --------------------------------------------------------------------------------