gitextract_vi5lwdol/ ├── AppStoreDemo/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── DS_Store │ │ ├── app_logo/ │ │ │ ├── Contents.json │ │ │ ├── logo_broadcast.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── logo_car.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── logo_game.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── logo_jump.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── logo_smile.imageset/ │ │ │ │ └── Contents.json │ │ │ └── logo_weibo.imageset/ │ │ │ └── Contents.json │ │ ├── common/ │ │ │ ├── Contents.json │ │ │ ├── circle_download.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── close_button.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── demo_icon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── detail_download.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── detail_more.imageset/ │ │ │ │ └── Contents.json │ │ │ └── navigation_back.imageset/ │ │ │ └── Contents.json │ │ ├── cover/ │ │ │ ├── Contents.json │ │ │ ├── cover_1.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── cover_2.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── cover_3.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── cover_4.imageset/ │ │ │ │ └── Contents.json │ │ │ └── cover_5.imageset/ │ │ │ └── Contents.json │ │ ├── cover_detail/ │ │ │ ├── Contents.json │ │ │ ├── cover_detail.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── cover_detail1.imageset/ │ │ │ │ └── Contents.json │ │ │ └── cover_detail2.imageset/ │ │ │ └── Contents.json │ │ └── tabBar/ │ │ ├── Contents.json │ │ ├── tabbar_apps.imageset/ │ │ │ └── Contents.json │ │ ├── tabbar_games.imageset/ │ │ │ └── Contents.json │ │ ├── tabbar_search.imageset/ │ │ │ └── Contents.json │ │ ├── tabbar_today.imageset/ │ │ │ └── Contents.json │ │ └── tabbar_updates.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── Common/ │ │ ├── CommonCollectionFlowLayout.swift │ │ └── CommonSectionHeaderView.swift │ ├── Extension/ │ │ ├── String+Extension.swift │ │ ├── UIColor+Extension.swift │ │ ├── UITableView+Extension.swift │ │ ├── UIView+Extension.swift │ │ └── UIViewController+Extension.swift │ ├── Game/ │ │ ├── Controller/ │ │ │ ├── DetailViewController.swift │ │ │ ├── DownloadPresentationController.swift │ │ │ ├── DownloadViewController.swift │ │ │ └── GameTableViewController.swift │ │ ├── Model/ │ │ │ ├── DownloadTransitioning.swift │ │ │ ├── GameRecommandModel.swift │ │ │ └── GameTopicModel.swift │ │ └── View/ │ │ ├── Detail/ │ │ │ ├── DetailInfomationTableViewCell.swift │ │ │ ├── DetailInformationCell.swift │ │ │ ├── DetailNavigationView.swift │ │ │ ├── DetailNewFeaturesCell.swift │ │ │ ├── DetailNewFeaturesCell.xib │ │ │ ├── DetailPreviewCell.swift │ │ │ ├── DetailPreviewCollectionView.swift │ │ │ ├── DetailPreviewCollectionViewCell.swift │ │ │ ├── DetailTopInfoCell.swift │ │ │ └── DetailTopInfoCell.xib │ │ ├── Download/ │ │ │ ├── DownloadBottomView.swift │ │ │ ├── DownloadBottomView.xib │ │ │ ├── DownloadClickView.swift │ │ │ └── DownloadClickView.xib │ │ ├── Link/ │ │ │ ├── GameLinkTableView.swift │ │ │ └── GameLinkTableViewCell.swift │ │ ├── Recommand/ │ │ │ ├── GameRecommandCollectionView.swift │ │ │ ├── GameRecommandTableViewCell.swift │ │ │ ├── RecommandCollectionViewCell.swift │ │ │ └── RecommandCollectionViewCell.xib │ │ └── Topic/ │ │ ├── GameTopicCollectionView.swift │ │ ├── GameTopicCollectionViewCell.swift │ │ ├── GameTopicCollectionViewCell.xib │ │ └── GameTopicTableViewCell.swift │ ├── Info.plist │ ├── Main.storyboard │ ├── Search/ │ │ ├── Controller/ │ │ │ └── SearchTableViewController.swift │ │ └── View/ │ │ └── SearchTableViewCell.swift │ ├── Today/ │ │ ├── Controller/ │ │ │ ├── CardDetailViewController.swift │ │ │ ├── CardPresentationController.swift │ │ │ └── TodayViewController.swift │ │ ├── Model/ │ │ │ ├── DS_Store │ │ │ └── TodayAnimationTransition.swift │ │ └── View/ │ │ ├── DetailScrollView.swift │ │ ├── TodayTableHeaderView.swift │ │ └── TodayTableViewCell.swift │ ├── Update/ │ │ ├── Controller/ │ │ │ └── UpdateTableViewController.swift │ │ ├── Model/ │ │ │ └── UpdateModel.swift │ │ └── View/ │ │ ├── UpdateTableViewCell.swift │ │ └── UpdateTableViewCell.xib │ ├── User/ │ │ ├── Controller/ │ │ │ └── UserTableViewController.swift │ │ └── View/ │ │ └── User.storyboard │ └── Utils/ │ ├── GlobalConstants.swift │ ├── GlobalFunctions.swift │ └── StarView.swift ├── AppStoreDemo.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata/ │ │ └── fengbufang.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata/ │ └── fengbufang.xcuserdatad/ │ ├── xcdebugger/ │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes/ │ └── xcschememanagement.plist ├── README.md └── 中文简介.md