├── .DS_Store ├── .gitignore ├── .swiftlint.yml ├── .vscode └── settings.json ├── Gank.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Gank.xcworkspace └── contents.xcworkspacedata ├── Gank ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-60@2x.png │ │ └── Icon-60@3x.png │ ├── Contents.json │ ├── button_send.imageset │ │ ├── Contents.json │ │ └── button_send.pdf │ └── navigation_menu_normal.imageset │ │ ├── Contents.json │ │ └── navigation_menu_normal.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Config │ ├── Config.swift │ └── Gank-Bridging-Header.h ├── Controllers │ ├── Home │ │ └── HomeViewController.swift │ ├── Navigate │ │ ├── BaseNavigationController.swift │ │ └── SideMenuNavigationController.swift │ ├── Side │ │ └── SideViewController.swift │ └── Web │ │ └── BrowserWebViewController.swift ├── Extensions │ └── Response+ObjectMapper.swift ├── Info.plist ├── Models │ └── Home │ │ └── Brick.swift ├── Protocol │ └── ViewModelType.swift ├── Services │ └── Network │ │ └── GankAPI.swift ├── ViewModels │ └── Home │ │ └── HomeViewModel.swift └── Views │ └── home │ ├── HomeTableViewCell.swift │ └── HomeTableViewCell.xib ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md └── Screenshot ├── 01.png ├── 02.png └── 03.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.quickSuggestions": true 3 | } -------------------------------------------------------------------------------- /Gank.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Gank.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Gank.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Gank/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/.DS_Store -------------------------------------------------------------------------------- /Gank/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/AppDelegate.swift -------------------------------------------------------------------------------- /Gank/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Gank/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Gank/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Gank/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Gank/Assets.xcassets/button_send.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Assets.xcassets/button_send.imageset/Contents.json -------------------------------------------------------------------------------- /Gank/Assets.xcassets/button_send.imageset/button_send.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Assets.xcassets/button_send.imageset/button_send.pdf -------------------------------------------------------------------------------- /Gank/Assets.xcassets/navigation_menu_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Assets.xcassets/navigation_menu_normal.imageset/Contents.json -------------------------------------------------------------------------------- /Gank/Assets.xcassets/navigation_menu_normal.imageset/navigation_menu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Assets.xcassets/navigation_menu_normal.imageset/navigation_menu_normal.png -------------------------------------------------------------------------------- /Gank/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Gank/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Gank/Config/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Config/Config.swift -------------------------------------------------------------------------------- /Gank/Config/Gank-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Config/Gank-Bridging-Header.h -------------------------------------------------------------------------------- /Gank/Controllers/Home/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Controllers/Home/HomeViewController.swift -------------------------------------------------------------------------------- /Gank/Controllers/Navigate/BaseNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Controllers/Navigate/BaseNavigationController.swift -------------------------------------------------------------------------------- /Gank/Controllers/Navigate/SideMenuNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Controllers/Navigate/SideMenuNavigationController.swift -------------------------------------------------------------------------------- /Gank/Controllers/Side/SideViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Controllers/Side/SideViewController.swift -------------------------------------------------------------------------------- /Gank/Controllers/Web/BrowserWebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Controllers/Web/BrowserWebViewController.swift -------------------------------------------------------------------------------- /Gank/Extensions/Response+ObjectMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Extensions/Response+ObjectMapper.swift -------------------------------------------------------------------------------- /Gank/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Info.plist -------------------------------------------------------------------------------- /Gank/Models/Home/Brick.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Models/Home/Brick.swift -------------------------------------------------------------------------------- /Gank/Protocol/ViewModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Protocol/ViewModelType.swift -------------------------------------------------------------------------------- /Gank/Services/Network/GankAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Services/Network/GankAPI.swift -------------------------------------------------------------------------------- /Gank/ViewModels/Home/HomeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/ViewModels/Home/HomeViewModel.swift -------------------------------------------------------------------------------- /Gank/Views/home/HomeTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Views/home/HomeTableViewCell.swift -------------------------------------------------------------------------------- /Gank/Views/home/HomeTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Gank/Views/home/HomeTableViewCell.xib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Screenshot/01.png -------------------------------------------------------------------------------- /Screenshot/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Screenshot/02.png -------------------------------------------------------------------------------- /Screenshot/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maru-zhang/Gank/HEAD/Screenshot/03.png --------------------------------------------------------------------------------