gitextract_n5eo_kqa/ ├── .gitignore ├── LICENSE ├── Podfile ├── README.md ├── TouTiao/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── StatusBarButtonImage.imageset/ │ │ │ └── Contents.json │ │ ├── TouTiao.imageset/ │ │ │ └── Contents.json │ │ ├── comment-icon.imageset/ │ │ │ └── Contents.json │ │ ├── icon-settings.imageset/ │ │ │ └── Contents.json │ │ ├── icon-upvote.imageset/ │ │ │ └── Contents.json │ │ └── icon.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── MainMenu.xib │ ├── Extension/ │ │ ├── NSDate+Extension.swift │ │ └── String+Extension.swift │ ├── Info.plist │ ├── MainViewController.swift │ ├── Model/ │ │ └── TTModel.swift │ ├── Network/ │ │ └── NetWorkFetcher.swift │ ├── PopViewController.swift │ ├── Service/ │ │ └── EventMonitor.swift │ ├── TouTiao.entitlements │ └── View/ │ ├── PopViewController.swift │ ├── PopViewController.xib │ ├── SettingMenuAction.swift │ ├── TTButton.swift │ └── TTCell.swift ├── TouTiao.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── TouTiao.xcworkspace/ │ └── contents.xcworkspacedata ├── TouTiaoLauncher/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── MainMenu.xib │ ├── Info.plist │ └── TouTiaoLauncher.entitlements ├── TouTiaoTests/ │ ├── Info.plist │ └── TouTiaoTests.swift └── TouTiaoUITests/ ├── Info.plist └── TouTiaoUITests.swift