├── .gitignore ├── .travis.yml ├── GKNavigationBarViewController.podspec ├── GKNavigationBarViewController ├── GKCategory │ ├── GKCategory.h │ ├── UIBarButtonItem+GKCategory.h │ ├── UIBarButtonItem+GKCategory.m │ ├── UIImage+GKCategory.h │ ├── UIImage+GKCategory.m │ ├── UINavigationController+GKCategory.h │ ├── UINavigationController+GKCategory.m │ ├── UINavigationItem+GKCategory.h │ ├── UINavigationItem+GKCategory.m │ ├── UIScrollView+GKCategory.h │ ├── UIScrollView+GKCategory.m │ ├── UIViewController+GKCategory.h │ └── UIViewController+GKCategory.m ├── GKConfigure │ ├── GKCommon.h │ ├── GKNavigationBar.h │ ├── GKNavigationBar.m │ ├── GKNavigationBarConfigure.h │ └── GKNavigationBarConfigure.m ├── GKNavigationBarViewController.bundle │ ├── btn_back_black@2x.png │ ├── btn_back_black@3x.png │ ├── btn_back_white@2x.png │ ├── btn_back_white@3x.png │ ├── nav_line.png │ ├── nav_line@2x.png │ └── nav_line@3x.png ├── GKNavigationBarViewController.h ├── GKNavigationBarViewController.m └── GKTransition │ ├── GKBaseTransitionAnimation.h │ ├── GKBaseTransitionAnimation.m │ ├── GKNavigationInteractiveTransition.h │ ├── GKNavigationInteractiveTransition.m │ ├── GKPopTransitionAnimation.h │ ├── GKPopTransitionAnimation.m │ ├── GKPushTransitionAnimation.h │ └── GKPushTransitionAnimation.m ├── GKNavigationBarViewControllerDemo ├── GKNavigationBarViewControllerDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── GKNavigationBarViewControllerFramework.xcscheme ├── GKNavigationBarViewControllerDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── GKNavigationBarViewControllerDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── 001.imageset │ │ │ ├── 001.png │ │ │ └── Contents.json │ │ ├── 002.imageset │ │ │ ├── 002.png │ │ │ └── Contents.json │ │ ├── 003.imageset │ │ │ ├── 003.png │ │ │ └── Contents.json │ │ ├── 004.imageset │ │ │ ├── 004.png │ │ │ └── Contents.json │ │ ├── 005.imageset │ │ │ ├── 005.png │ │ │ └── Contents.json │ │ ├── 006.imageset │ │ │ ├── 006.png │ │ │ └── Contents.json │ │ ├── 007.imageset │ │ │ ├── 007.png │ │ │ └── Contents.json │ │ ├── Activity.imageset │ │ │ ├── Activity.png │ │ │ ├── Activity@2x.png │ │ │ ├── Activity@3x.png │ │ │ └── Contents.json │ │ ├── Activity_selected.imageset │ │ │ ├── Activity_selected.png │ │ │ ├── Activity_selected@2x.png │ │ │ ├── Activity_selected@3x.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Douyin │ │ │ ├── Contents.json │ │ │ ├── WechatIMG238.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── WechatIMG238.jpeg │ │ │ ├── WechatIMG239.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── WechatIMG239.jpeg │ │ │ ├── WechatIMG240.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── WechatIMG240.jpeg │ │ │ ├── ss_icon_comment.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ss_icon_comment@2x.png │ │ │ │ └── ss_icon_comment@3x.png │ │ │ ├── ss_icon_like.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ss_icon_like@2x.png │ │ │ │ └── ss_icon_like@3x.png │ │ │ ├── ss_icon_pause.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ss_icon_pause@2x.png │ │ │ │ └── ss_icon_pause@3x.png │ │ │ ├── ss_icon_share.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ss_icon_share@2x.png │ │ │ │ └── ss_icon_share@3x.png │ │ │ ├── ss_icon_star_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ss_icon_star_normal@2x.png │ │ │ │ └── ss_icon_star_normal@3x.png │ │ │ └── ss_icon_star_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ss_icon_star_selected@2x.png │ │ │ │ └── ss_icon_star_selected@3x.png │ │ ├── Home.imageset │ │ │ ├── Contents.json │ │ │ ├── Home@2x.png │ │ │ └── Home@3x.png │ │ ├── Home_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── Home_selected@2x.png │ │ │ └── Home_selected@3x.png │ │ ├── Mine.imageset │ │ │ ├── Contents.json │ │ │ ├── Mine@2x.png │ │ │ └── Mine@3x.png │ │ ├── Mine_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── Mine_selected@2x.png │ │ │ └── Mine_selected@3x.png │ │ ├── Toutiao │ │ │ ├── Contents.json │ │ │ ├── home_nav.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── home_nav.jpeg │ │ │ ├── home_page.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── home_page.png │ │ │ ├── micro_page.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── micro_page.png │ │ │ ├── mine_page.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mine_page.png │ │ │ ├── video_nav.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── video_nav.png │ │ │ └── video_page.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── video_page.png │ │ ├── WYMusic │ │ │ ├── Contents.json │ │ │ ├── cm2_btm_icn_account.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_btm_icn_account.png │ │ │ │ ├── cm2_btm_icn_account@2x.png │ │ │ │ └── cm2_btm_icn_account@3x.png │ │ │ ├── cm2_btm_icn_account_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_btm_icn_account_prs.png │ │ │ │ ├── cm2_btm_icn_account_prs@2x.png │ │ │ │ └── cm2_btm_icn_account_prs@3x.png │ │ │ ├── cm2_btm_icn_discovery.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_btm_icn_discovery.png │ │ │ │ ├── cm2_btm_icn_discovery@2x.png │ │ │ │ └── cm2_btm_icn_discovery@3x.png │ │ │ ├── cm2_btm_icn_discovery_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_btm_icn_discovery_prs.png │ │ │ │ ├── cm2_btm_icn_discovery_prs@2x.png │ │ │ │ └── cm2_btm_icn_discovery_prs@3x.png │ │ │ ├── cm2_btm_icn_friend.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_btm_icn_friend.png │ │ │ │ ├── cm2_btm_icn_friend@2x.png │ │ │ │ └── cm2_btm_icn_friend@3x.png │ │ │ ├── cm2_btm_icn_friend_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_btm_icn_friend_prs.png │ │ │ │ ├── cm2_btm_icn_friend_prs@2x.png │ │ │ │ └── cm2_btm_icn_friend_prs@3x.png │ │ │ ├── cm2_btm_icn_music.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_btm_icn_music.png │ │ │ │ ├── cm2_btm_icn_music@2x.png │ │ │ │ └── cm2_btm_icn_music@3x.png │ │ │ ├── cm2_btm_icn_music_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_btm_icn_music_prs.png │ │ │ │ ├── cm2_btm_icn_music_prs@2x.png │ │ │ │ └── cm2_btm_icn_music_prs@3x.png │ │ │ ├── cm2_topbar_icn_mic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_mic.png │ │ │ │ ├── cm2_topbar_icn_mic@2x.png │ │ │ │ └── cm2_topbar_icn_mic@3x.png │ │ │ ├── cm2_topbar_icn_mic_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_mic_prs.png │ │ │ │ ├── cm2_topbar_icn_mic_prs@2x.png │ │ │ │ └── cm2_topbar_icn_mic_prs@3x.png │ │ │ ├── cm2_topbar_icn_playing.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing.png │ │ │ │ ├── cm2_topbar_icn_playing@2x.png │ │ │ │ └── cm2_topbar_icn_playing@3x.png │ │ │ ├── cm2_topbar_icn_playing2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing2.png │ │ │ │ ├── cm2_topbar_icn_playing2@2x.png │ │ │ │ └── cm2_topbar_icn_playing2@3x.png │ │ │ ├── cm2_topbar_icn_playing2_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing2_prs.png │ │ │ │ ├── cm2_topbar_icn_playing2_prs@2x.png │ │ │ │ └── cm2_topbar_icn_playing2_prs@3x.png │ │ │ ├── cm2_topbar_icn_playing3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing3.png │ │ │ │ ├── cm2_topbar_icn_playing3@2x.png │ │ │ │ └── cm2_topbar_icn_playing3@3x.png │ │ │ ├── cm2_topbar_icn_playing3_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing3_prs.png │ │ │ │ ├── cm2_topbar_icn_playing3_prs@2x.png │ │ │ │ └── cm2_topbar_icn_playing3_prs@3x.png │ │ │ ├── cm2_topbar_icn_playing4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing4.png │ │ │ │ ├── cm2_topbar_icn_playing4@2x.png │ │ │ │ └── cm2_topbar_icn_playing4@3x.png │ │ │ ├── cm2_topbar_icn_playing4_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing4_prs.png │ │ │ │ ├── cm2_topbar_icn_playing4_prs@2x.png │ │ │ │ └── cm2_topbar_icn_playing4_prs@3x.png │ │ │ ├── cm2_topbar_icn_playing5.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing5.png │ │ │ │ ├── cm2_topbar_icn_playing5@2x.png │ │ │ │ └── cm2_topbar_icn_playing5@3x.png │ │ │ ├── cm2_topbar_icn_playing5_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing5_prs.png │ │ │ │ ├── cm2_topbar_icn_playing5_prs@2x.png │ │ │ │ └── cm2_topbar_icn_playing5_prs@3x.png │ │ │ ├── cm2_topbar_icn_playing6.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing6.png │ │ │ │ ├── cm2_topbar_icn_playing6@2x.png │ │ │ │ └── cm2_topbar_icn_playing6@3x.png │ │ │ ├── cm2_topbar_icn_playing6_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing6_prs.png │ │ │ │ └── cm2_topbar_icn_playing6_prs@2x.png │ │ │ ├── cm2_topbar_icn_playing_prs.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cm2_topbar_icn_playing_prs.png │ │ │ │ ├── cm2_topbar_icn_playing_prs@2x.png │ │ │ │ └── cm2_topbar_icn_playing_prs@3x.png │ │ │ ├── discover_page.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── discover_page.png │ │ │ └── music_page.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── music_page.png │ │ ├── WYNews │ │ │ ├── Contents.json │ │ │ ├── news_detailpage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── news_detailpage.png │ │ │ ├── news_homepage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── news_homepage.png │ │ │ └── news_titleView.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── news_titleView@2x.png │ │ ├── bg.imageset │ │ │ ├── Contents.json │ │ │ └── bg.jpg │ │ ├── hesd_rectangular.imageset │ │ │ ├── Contents.json │ │ │ ├── hesd_rectangular@2x.png │ │ │ └── hesd_rectangular@3x.png │ │ ├── line.imageset │ │ │ ├── Contents.json │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ └── line@3x.png │ │ ├── nav_bg.imageset │ │ │ ├── Contents.json │ │ │ ├── nav_bg@2x.png │ │ │ └── nav_bg@3x.png │ │ └── weixin.imageset │ │ │ ├── Contents.json │ │ │ └── weixin.jpg │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Classes │ │ ├── BaseVC │ │ │ ├── GKBaseNavigationController.h │ │ │ ├── GKBaseNavigationController.m │ │ │ ├── GKBaseViewController.h │ │ │ ├── GKBaseViewController.m │ │ │ ├── GKDemoBaseViewController.h │ │ │ ├── GKDemoBaseViewController.m │ │ │ ├── GKTabBaseViewController.h │ │ │ ├── GKTabBaseViewController.m │ │ │ ├── UIView+Extension.h │ │ │ └── UIView+Extension.m │ │ ├── DemoVC │ │ │ ├── GKDemo000ViewController.h │ │ │ ├── GKDemo000ViewController.m │ │ │ ├── GKDemo000ViewController.xib │ │ │ ├── GKDemo001ViewController.h │ │ │ ├── GKDemo001ViewController.m │ │ │ ├── GKDemo002ViewController.h │ │ │ ├── GKDemo002ViewController.m │ │ │ ├── GKDemo003ViewController.h │ │ │ ├── GKDemo003ViewController.m │ │ │ ├── GKDemo004ViewController.h │ │ │ ├── GKDemo004ViewController.m │ │ │ ├── GKDemo004ViewController.xib │ │ │ ├── GKDemo005ViewController.h │ │ │ ├── GKDemo005ViewController.m │ │ │ ├── GKDemoTransitionViewController.h │ │ │ ├── GKDemoTransitionViewController.m │ │ │ ├── GKDemoWebViewController.h │ │ │ ├── GKDemoWebViewController.m │ │ │ └── web.txt │ │ ├── GKMainViewController.h │ │ ├── GKMainViewController.m │ │ ├── 今日头条 │ │ │ ├── GKToutiaoViewController.h │ │ │ ├── GKToutiaoViewController.m │ │ │ └── tab │ │ │ │ ├── GKToutiaoDetailViewController.h │ │ │ │ ├── GKToutiaoDetailViewController.m │ │ │ │ ├── GKToutiaoHomeViewController.h │ │ │ │ ├── GKToutiaoHomeViewController.m │ │ │ │ ├── GKToutiaoMicroViewController.h │ │ │ │ ├── GKToutiaoMicroViewController.m │ │ │ │ ├── GKToutiaoMineViewController.h │ │ │ │ ├── GKToutiaoMineViewController.m │ │ │ │ ├── GKToutiaoVideoViewController.h │ │ │ │ └── GKToutiaoVideoViewController.m │ │ ├── 微信 │ │ │ ├── FloatView │ │ │ │ ├── GKFloatTransition.h │ │ │ │ ├── GKFloatTransition.m │ │ │ │ ├── GKFloatView.h │ │ │ │ └── GKFloatView.m │ │ │ ├── GKWXViewController.h │ │ │ ├── GKWXViewController.m │ │ │ └── tab │ │ │ │ ├── GKWXDetailViewController.h │ │ │ │ ├── GKWXDetailViewController.m │ │ │ │ ├── GKWXFindViewController.h │ │ │ │ ├── GKWXFindViewController.m │ │ │ │ ├── GKWXHomeViewController.h │ │ │ │ ├── GKWXHomeViewController.m │ │ │ │ ├── GKWXMineViewController.h │ │ │ │ └── GKWXMineViewController.m │ │ ├── 抖音 │ │ │ ├── GKDouyinHomePlayerViewController.h │ │ │ ├── GKDouyinHomePlayerViewController.m │ │ │ ├── GKDouyinHomeSearchViewController.h │ │ │ ├── GKDouyinHomeSearchViewController.m │ │ │ ├── GKDouyinHomeViewController.h │ │ │ ├── GKDouyinHomeViewController.m │ │ │ ├── GKDouyinPersonalViewController.h │ │ │ ├── GKDouyinPersonalViewController.m │ │ │ ├── GKDouyinScrollView.h │ │ │ └── GKDouyinScrollView.m │ │ ├── 网易云音乐 │ │ │ ├── GKWYMusicViewController.h │ │ │ ├── GKWYMusicViewController.m │ │ │ └── tab │ │ │ │ ├── GKWYMusicAccountViewController.h │ │ │ │ ├── GKWYMusicAccountViewController.m │ │ │ │ ├── GKWYMusicDetailViewController.h │ │ │ │ ├── GKWYMusicDetailViewController.m │ │ │ │ ├── GKWYMusicFindViewController.h │ │ │ │ ├── GKWYMusicFindViewController.m │ │ │ │ ├── GKWYMusicFriendViewController.h │ │ │ │ ├── GKWYMusicFriendViewController.m │ │ │ │ ├── GKWYMusicMineViewController.h │ │ │ │ └── GKWYMusicMineViewController.m │ │ └── 网易新闻 │ │ │ ├── GKWYNewsViewController.h │ │ │ ├── GKWYNewsViewController.m │ │ │ └── tab │ │ │ ├── GKWYNewsCommentViewController.h │ │ │ ├── GKWYNewsCommentViewController.m │ │ │ ├── GKWYNewsDetailViewController.h │ │ │ ├── GKWYNewsDetailViewController.m │ │ │ ├── GKWYNewsHomeViewController.h │ │ │ ├── GKWYNewsHomeViewController.m │ │ │ ├── GKWYNewsLiveViewController.h │ │ │ ├── GKWYNewsLiveViewController.m │ │ │ ├── GKWYNewsNewViewController.h │ │ │ ├── GKWYNewsNewViewController.m │ │ │ ├── GKWYNewsProfileViewController.h │ │ │ ├── GKWYNewsProfileViewController.m │ │ │ ├── GKWYNewsVideoViewController.h │ │ │ └── GKWYNewsVideoViewController.m │ ├── Info.plist │ ├── PrefixHeader.pch │ └── main.m ├── GKNavigationBarViewControllerDemoTests │ ├── GKNavigationBarViewControllerDemoTests.m │ └── Info.plist ├── GKNavigationBarViewControllerFramework │ └── Info.plist ├── Podfile ├── Podfile.lock └── Pods │ ├── IQKeyboardManager │ ├── IQKeyboardManager │ │ ├── Categories │ │ │ ├── IQNSArray+Sort.h │ │ │ ├── IQNSArray+Sort.m │ │ │ ├── IQUIScrollView+Additions.h │ │ │ ├── IQUIScrollView+Additions.m │ │ │ ├── IQUITextFieldView+Additions.h │ │ │ ├── IQUITextFieldView+Additions.m │ │ │ ├── IQUIView+Hierarchy.h │ │ │ ├── IQUIView+Hierarchy.m │ │ │ ├── IQUIViewController+Additions.h │ │ │ └── IQUIViewController+Additions.m │ │ ├── Constants │ │ │ ├── IQKeyboardManagerConstants.h │ │ │ └── IQKeyboardManagerConstantsInternal.h │ │ ├── IQKeyboardManager.h │ │ ├── IQKeyboardManager.m │ │ ├── IQKeyboardReturnKeyHandler.h │ │ ├── IQKeyboardReturnKeyHandler.m │ │ ├── IQTextView │ │ │ ├── IQTextView.h │ │ │ └── IQTextView.m │ │ └── IQToolbar │ │ │ ├── IQBarButtonItem.h │ │ │ ├── IQBarButtonItem.m │ │ │ ├── IQPreviousNextView.h │ │ │ ├── IQPreviousNextView.m │ │ │ ├── IQTitleBarButtonItem.h │ │ │ ├── IQTitleBarButtonItem.m │ │ │ ├── IQToolbar.h │ │ │ ├── IQToolbar.m │ │ │ ├── IQUIView+IQKeyboardToolbar.h │ │ │ └── IQUIView+IQKeyboardToolbar.m │ ├── LICENSE.md │ └── README.md │ ├── Manifest.lock │ ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── TZImagePickerController │ ├── LICENSE │ ├── README.md │ └── TZImagePickerController │ │ └── TZImagePickerController │ │ ├── NSBundle+TZImagePicker.h │ │ ├── NSBundle+TZImagePicker.m │ │ ├── TZAssetCell.h │ │ ├── TZAssetCell.m │ │ ├── TZAssetModel.h │ │ ├── TZAssetModel.m │ │ ├── TZGifPhotoPreviewController.h │ │ ├── TZGifPhotoPreviewController.m │ │ ├── TZImageCropManager.h │ │ ├── TZImageCropManager.m │ │ ├── TZImageManager.h │ │ ├── TZImageManager.m │ │ ├── TZImagePickerController.bundle │ │ ├── MMVideoPreviewPlay@2x.png │ │ ├── MMVideoPreviewPlayHL@2x.png │ │ ├── VideoSendIcon@2x.png │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── bg.lproj │ │ │ └── Localizable.strings │ │ ├── cs-CZ.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── el.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── iCloudError@2x.png │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko-KP.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ └── Localizable.strings │ │ ├── navi_back@2x.png │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── photo_def_photoPickerVc@2x.png │ │ ├── photo_def_previewVc@2x.png │ │ ├── photo_number_icon@2x.png │ │ ├── photo_original_def@2x.png │ │ ├── photo_original_sel@2x.png │ │ ├── photo_sel_photoPickerVc@2x.png │ │ ├── photo_sel_previewVc@2x.png │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── preview_number_icon@2x.png │ │ ├── preview_original_def@2x.png │ │ ├── pt.lproj │ │ │ └── Localizable.strings │ │ ├── ro.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── takePicture80@2x.png │ │ ├── takePicture@2x.png │ │ ├── th.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ │ └── Localizable.strings │ │ ├── TZImagePickerController.h │ │ ├── TZImagePickerController.m │ │ ├── TZImageRequestOperation.h │ │ ├── TZImageRequestOperation.m │ │ ├── TZLocationManager.h │ │ ├── TZLocationManager.m │ │ ├── TZPhotoPickerController.h │ │ ├── TZPhotoPickerController.m │ │ ├── TZPhotoPreviewCell.h │ │ ├── TZPhotoPreviewCell.m │ │ ├── TZPhotoPreviewController.h │ │ ├── TZPhotoPreviewController.m │ │ ├── TZProgressView.h │ │ ├── TZProgressView.m │ │ ├── TZVideoPlayerController.h │ │ ├── TZVideoPlayerController.m │ │ ├── UIView+Layout.h │ │ └── UIView+Layout.m │ └── Target Support Files │ ├── IQKeyboardManager │ ├── IQKeyboardManager-Info.plist │ ├── IQKeyboardManager-dummy.m │ ├── IQKeyboardManager-prefix.pch │ ├── IQKeyboardManager-umbrella.h │ ├── IQKeyboardManager.debug.xcconfig │ ├── IQKeyboardManager.modulemap │ └── IQKeyboardManager.release.xcconfig │ ├── Masonry │ ├── Masonry-Info.plist │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ ├── Masonry-umbrella.h │ ├── Masonry.debug.xcconfig │ ├── Masonry.modulemap │ ├── Masonry.release.xcconfig │ └── Masonry.xcconfig │ ├── Pods-GKNavigationBarViewControllerDemo │ ├── Pods-GKNavigationBarViewControllerDemo-Info.plist │ ├── Pods-GKNavigationBarViewControllerDemo-acknowledgements.markdown │ ├── Pods-GKNavigationBarViewControllerDemo-acknowledgements.plist │ ├── Pods-GKNavigationBarViewControllerDemo-dummy.m │ ├── Pods-GKNavigationBarViewControllerDemo-frameworks-Debug-input-files.xcfilelist │ ├── Pods-GKNavigationBarViewControllerDemo-frameworks-Debug-output-files.xcfilelist │ ├── Pods-GKNavigationBarViewControllerDemo-frameworks-Release-input-files.xcfilelist │ ├── Pods-GKNavigationBarViewControllerDemo-frameworks-Release-output-files.xcfilelist │ ├── Pods-GKNavigationBarViewControllerDemo-frameworks.sh │ ├── Pods-GKNavigationBarViewControllerDemo-umbrella.h │ ├── Pods-GKNavigationBarViewControllerDemo.debug.xcconfig │ ├── Pods-GKNavigationBarViewControllerDemo.modulemap │ └── Pods-GKNavigationBarViewControllerDemo.release.xcconfig │ └── TZImagePickerController │ ├── TZImagePickerController-Info.plist │ ├── TZImagePickerController-dummy.m │ ├── TZImagePickerController-prefix.pch │ ├── TZImagePickerController-umbrella.h │ ├── TZImagePickerController.debug.xcconfig │ ├── TZImagePickerController.modulemap │ ├── TZImagePickerController.release.xcconfig │ └── TZImagePickerController.xcconfig ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/.travis.yml -------------------------------------------------------------------------------- /GKNavigationBarViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController.podspec -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/GKCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/GKCategory.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UIBarButtonItem+GKCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UIBarButtonItem+GKCategory.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UIBarButtonItem+GKCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UIBarButtonItem+GKCategory.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UIImage+GKCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UIImage+GKCategory.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UIImage+GKCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UIImage+GKCategory.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UINavigationController+GKCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UINavigationController+GKCategory.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UINavigationController+GKCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UINavigationController+GKCategory.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UINavigationItem+GKCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UINavigationItem+GKCategory.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UINavigationItem+GKCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UINavigationItem+GKCategory.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UIScrollView+GKCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UIScrollView+GKCategory.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UIScrollView+GKCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UIScrollView+GKCategory.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UIViewController+GKCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UIViewController+GKCategory.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKCategory/UIViewController+GKCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKCategory/UIViewController+GKCategory.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKConfigure/GKCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKConfigure/GKCommon.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKConfigure/GKNavigationBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKConfigure/GKNavigationBar.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKConfigure/GKNavigationBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKConfigure/GKNavigationBar.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKConfigure/GKNavigationBarConfigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKConfigure/GKNavigationBarConfigure.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKConfigure/GKNavigationBarConfigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKConfigure/GKNavigationBarConfigure.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_black@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_black@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_white@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKNavigationBarViewController.bundle/btn_back_white@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line.png -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKNavigationBarViewController.bundle/nav_line@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKNavigationBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKNavigationBarViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKNavigationBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKNavigationBarViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKTransition/GKBaseTransitionAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKTransition/GKBaseTransitionAnimation.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKTransition/GKBaseTransitionAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKTransition/GKBaseTransitionAnimation.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKTransition/GKNavigationInteractiveTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKTransition/GKNavigationInteractiveTransition.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKTransition/GKNavigationInteractiveTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKTransition/GKNavigationInteractiveTransition.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKTransition/GKPopTransitionAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKTransition/GKPopTransitionAnimation.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKTransition/GKPopTransitionAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKTransition/GKPopTransitionAnimation.m -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKTransition/GKPushTransitionAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKTransition/GKPushTransitionAnimation.h -------------------------------------------------------------------------------- /GKNavigationBarViewController/GKTransition/GKPushTransitionAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewController/GKTransition/GKPushTransitionAnimation.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcodeproj/xcshareddata/xcschemes/GKNavigationBarViewControllerFramework.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcodeproj/xcshareddata/xcschemes/GKNavigationBarViewControllerFramework.xcscheme -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/AppDelegate.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/AppDelegate.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/001.imageset/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/001.imageset/001.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/001.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/001.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/002.imageset/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/002.imageset/002.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/002.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/002.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/003.imageset/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/003.imageset/003.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/003.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/003.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/004.imageset/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/004.imageset/004.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/004.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/004.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/005.imageset/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/005.imageset/005.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/005.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/005.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/006.imageset/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/006.imageset/006.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/006.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/006.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/007.imageset/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/007.imageset/007.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/007.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/007.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity.imageset/Activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity.imageset/Activity.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity.imageset/Activity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity.imageset/Activity@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity.imageset/Activity@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity.imageset/Activity@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity_selected.imageset/Activity_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity_selected.imageset/Activity_selected.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity_selected.imageset/Activity_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity_selected.imageset/Activity_selected@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity_selected.imageset/Activity_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity_selected.imageset/Activity_selected@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Activity_selected.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG238.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG238.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG238.imageset/WechatIMG238.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG238.imageset/WechatIMG238.jpeg -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG239.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG239.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG239.imageset/WechatIMG239.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG239.imageset/WechatIMG239.jpeg -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG240.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG240.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG240.imageset/WechatIMG240.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/WechatIMG240.imageset/WechatIMG240.jpeg -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_comment.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_comment.imageset/ss_icon_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_comment.imageset/ss_icon_comment@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_comment.imageset/ss_icon_comment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_comment.imageset/ss_icon_comment@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_like.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_like.imageset/ss_icon_like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_like.imageset/ss_icon_like@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_like.imageset/ss_icon_like@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_like.imageset/ss_icon_like@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_pause.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_pause.imageset/ss_icon_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_pause.imageset/ss_icon_pause@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_pause.imageset/ss_icon_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_pause.imageset/ss_icon_pause@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_share.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_share.imageset/ss_icon_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_share.imageset/ss_icon_share@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_share.imageset/ss_icon_share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_share.imageset/ss_icon_share@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_normal.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_normal.imageset/ss_icon_star_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_normal.imageset/ss_icon_star_normal@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_normal.imageset/ss_icon_star_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_normal.imageset/ss_icon_star_normal@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_selected.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_selected.imageset/ss_icon_star_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_selected.imageset/ss_icon_star_selected@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_selected.imageset/ss_icon_star_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Douyin/ss_icon_star_selected.imageset/ss_icon_star_selected@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home.imageset/Home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home.imageset/Home@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home.imageset/Home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home.imageset/Home@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home_selected.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home_selected.imageset/Home_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home_selected.imageset/Home_selected@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home_selected.imageset/Home_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Home_selected.imageset/Home_selected@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine.imageset/Mine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine.imageset/Mine@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine.imageset/Mine@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine.imageset/Mine@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine_selected.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine_selected.imageset/Mine_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine_selected.imageset/Mine_selected@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine_selected.imageset/Mine_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Mine_selected.imageset/Mine_selected@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/home_nav.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/home_nav.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/home_nav.imageset/home_nav.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/home_nav.imageset/home_nav.jpeg -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/home_page.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/home_page.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/home_page.imageset/home_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/home_page.imageset/home_page.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/micro_page.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/micro_page.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/micro_page.imageset/micro_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/micro_page.imageset/micro_page.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/mine_page.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/mine_page.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/mine_page.imageset/mine_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/mine_page.imageset/mine_page.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/video_nav.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/video_nav.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/video_nav.imageset/video_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/video_nav.imageset/video_nav.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/video_page.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/video_page.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/video_page.imageset/video_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/Toutiao/video_page.imageset/video_page.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account.imageset/cm2_btm_icn_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account.imageset/cm2_btm_icn_account.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account.imageset/cm2_btm_icn_account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account.imageset/cm2_btm_icn_account@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account.imageset/cm2_btm_icn_account@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account.imageset/cm2_btm_icn_account@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account_prs.imageset/cm2_btm_icn_account_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account_prs.imageset/cm2_btm_icn_account_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account_prs.imageset/cm2_btm_icn_account_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account_prs.imageset/cm2_btm_icn_account_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account_prs.imageset/cm2_btm_icn_account_prs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_account_prs.imageset/cm2_btm_icn_account_prs@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery.imageset/cm2_btm_icn_discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery.imageset/cm2_btm_icn_discovery.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery.imageset/cm2_btm_icn_discovery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery.imageset/cm2_btm_icn_discovery@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery.imageset/cm2_btm_icn_discovery@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery.imageset/cm2_btm_icn_discovery@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery_prs.imageset/cm2_btm_icn_discovery_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery_prs.imageset/cm2_btm_icn_discovery_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery_prs.imageset/cm2_btm_icn_discovery_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery_prs.imageset/cm2_btm_icn_discovery_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery_prs.imageset/cm2_btm_icn_discovery_prs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_discovery_prs.imageset/cm2_btm_icn_discovery_prs@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend.imageset/cm2_btm_icn_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend.imageset/cm2_btm_icn_friend.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend.imageset/cm2_btm_icn_friend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend.imageset/cm2_btm_icn_friend@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend.imageset/cm2_btm_icn_friend@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend.imageset/cm2_btm_icn_friend@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend_prs.imageset/cm2_btm_icn_friend_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend_prs.imageset/cm2_btm_icn_friend_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend_prs.imageset/cm2_btm_icn_friend_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend_prs.imageset/cm2_btm_icn_friend_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend_prs.imageset/cm2_btm_icn_friend_prs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_friend_prs.imageset/cm2_btm_icn_friend_prs@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music.imageset/cm2_btm_icn_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music.imageset/cm2_btm_icn_music.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music.imageset/cm2_btm_icn_music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music.imageset/cm2_btm_icn_music@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music.imageset/cm2_btm_icn_music@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music.imageset/cm2_btm_icn_music@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music_prs.imageset/cm2_btm_icn_music_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music_prs.imageset/cm2_btm_icn_music_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music_prs.imageset/cm2_btm_icn_music_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music_prs.imageset/cm2_btm_icn_music_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music_prs.imageset/cm2_btm_icn_music_prs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_btm_icn_music_prs.imageset/cm2_btm_icn_music_prs@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic.imageset/cm2_topbar_icn_mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic.imageset/cm2_topbar_icn_mic.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic.imageset/cm2_topbar_icn_mic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic.imageset/cm2_topbar_icn_mic@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic.imageset/cm2_topbar_icn_mic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic.imageset/cm2_topbar_icn_mic@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic_prs.imageset/cm2_topbar_icn_mic_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic_prs.imageset/cm2_topbar_icn_mic_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic_prs.imageset/cm2_topbar_icn_mic_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic_prs.imageset/cm2_topbar_icn_mic_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic_prs.imageset/cm2_topbar_icn_mic_prs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_mic_prs.imageset/cm2_topbar_icn_mic_prs@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing.imageset/cm2_topbar_icn_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing.imageset/cm2_topbar_icn_playing.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing.imageset/cm2_topbar_icn_playing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing.imageset/cm2_topbar_icn_playing@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing.imageset/cm2_topbar_icn_playing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing.imageset/cm2_topbar_icn_playing@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2.imageset/cm2_topbar_icn_playing2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2.imageset/cm2_topbar_icn_playing2.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2.imageset/cm2_topbar_icn_playing2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2.imageset/cm2_topbar_icn_playing2@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2.imageset/cm2_topbar_icn_playing2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2.imageset/cm2_topbar_icn_playing2@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2_prs.imageset/cm2_topbar_icn_playing2_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2_prs.imageset/cm2_topbar_icn_playing2_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2_prs.imageset/cm2_topbar_icn_playing2_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2_prs.imageset/cm2_topbar_icn_playing2_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2_prs.imageset/cm2_topbar_icn_playing2_prs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing2_prs.imageset/cm2_topbar_icn_playing2_prs@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3.imageset/cm2_topbar_icn_playing3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3.imageset/cm2_topbar_icn_playing3.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3.imageset/cm2_topbar_icn_playing3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3.imageset/cm2_topbar_icn_playing3@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3.imageset/cm2_topbar_icn_playing3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3.imageset/cm2_topbar_icn_playing3@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3_prs.imageset/cm2_topbar_icn_playing3_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3_prs.imageset/cm2_topbar_icn_playing3_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3_prs.imageset/cm2_topbar_icn_playing3_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3_prs.imageset/cm2_topbar_icn_playing3_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3_prs.imageset/cm2_topbar_icn_playing3_prs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing3_prs.imageset/cm2_topbar_icn_playing3_prs@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4.imageset/cm2_topbar_icn_playing4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4.imageset/cm2_topbar_icn_playing4.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4.imageset/cm2_topbar_icn_playing4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4.imageset/cm2_topbar_icn_playing4@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4.imageset/cm2_topbar_icn_playing4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4.imageset/cm2_topbar_icn_playing4@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4_prs.imageset/cm2_topbar_icn_playing4_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4_prs.imageset/cm2_topbar_icn_playing4_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4_prs.imageset/cm2_topbar_icn_playing4_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4_prs.imageset/cm2_topbar_icn_playing4_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4_prs.imageset/cm2_topbar_icn_playing4_prs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing4_prs.imageset/cm2_topbar_icn_playing4_prs@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5.imageset/cm2_topbar_icn_playing5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5.imageset/cm2_topbar_icn_playing5.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5.imageset/cm2_topbar_icn_playing5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5.imageset/cm2_topbar_icn_playing5@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5.imageset/cm2_topbar_icn_playing5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5.imageset/cm2_topbar_icn_playing5@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5_prs.imageset/cm2_topbar_icn_playing5_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5_prs.imageset/cm2_topbar_icn_playing5_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5_prs.imageset/cm2_topbar_icn_playing5_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5_prs.imageset/cm2_topbar_icn_playing5_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5_prs.imageset/cm2_topbar_icn_playing5_prs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing5_prs.imageset/cm2_topbar_icn_playing5_prs@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6.imageset/cm2_topbar_icn_playing6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6.imageset/cm2_topbar_icn_playing6.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6.imageset/cm2_topbar_icn_playing6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6.imageset/cm2_topbar_icn_playing6@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6.imageset/cm2_topbar_icn_playing6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6.imageset/cm2_topbar_icn_playing6@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6_prs.imageset/cm2_topbar_icn_playing6_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6_prs.imageset/cm2_topbar_icn_playing6_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6_prs.imageset/cm2_topbar_icn_playing6_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing6_prs.imageset/cm2_topbar_icn_playing6_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing_prs.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing_prs.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing_prs.imageset/cm2_topbar_icn_playing_prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing_prs.imageset/cm2_topbar_icn_playing_prs.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing_prs.imageset/cm2_topbar_icn_playing_prs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing_prs.imageset/cm2_topbar_icn_playing_prs@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing_prs.imageset/cm2_topbar_icn_playing_prs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/cm2_topbar_icn_playing_prs.imageset/cm2_topbar_icn_playing_prs@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/discover_page.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/discover_page.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/discover_page.imageset/discover_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/discover_page.imageset/discover_page.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/music_page.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/music_page.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/music_page.imageset/music_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYMusic/music_page.imageset/music_page.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_detailpage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_detailpage.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_detailpage.imageset/news_detailpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_detailpage.imageset/news_detailpage.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_homepage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_homepage.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_homepage.imageset/news_homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_homepage.imageset/news_homepage.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_titleView.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_titleView.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_titleView.imageset/news_titleView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/WYNews/news_titleView.imageset/news_titleView@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/bg.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/bg.imageset/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/bg.imageset/bg.jpg -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/hesd_rectangular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/hesd_rectangular.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/hesd_rectangular.imageset/hesd_rectangular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/hesd_rectangular.imageset/hesd_rectangular@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/hesd_rectangular.imageset/hesd_rectangular@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/hesd_rectangular.imageset/hesd_rectangular@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/line.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/line.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/line.imageset/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/line.imageset/line.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/line.imageset/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/line.imageset/line@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/line.imageset/line@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/line.imageset/line@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/nav_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/nav_bg.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/nav_bg.imageset/nav_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/nav_bg.imageset/nav_bg@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/nav_bg.imageset/nav_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/nav_bg.imageset/nav_bg@3x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/weixin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/weixin.imageset/Contents.json -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/weixin.imageset/weixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Assets.xcassets/weixin.imageset/weixin.jpg -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKBaseNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKBaseNavigationController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKBaseNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKBaseNavigationController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKBaseViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKBaseViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKDemoBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKDemoBaseViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKDemoBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKDemoBaseViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKTabBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKTabBaseViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKTabBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/GKTabBaseViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/UIView+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/UIView+Extension.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/UIView+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/BaseVC/UIView+Extension.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo000ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo000ViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo000ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo000ViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo000ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo000ViewController.xib -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo001ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo001ViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo001ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo001ViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo002ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo002ViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo002ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo002ViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo003ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo003ViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo003ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo003ViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo004ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo004ViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo004ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo004ViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo004ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo004ViewController.xib -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo005ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo005ViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo005ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemo005ViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemoTransitionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemoTransitionViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemoTransitionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemoTransitionViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemoWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemoWebViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemoWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/GKDemoWebViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/web.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/DemoVC/web.txt -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/GKMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/GKMainViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/GKMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/GKMainViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/GKToutiaoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/GKToutiaoViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/GKToutiaoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/GKToutiaoViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoDetailViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoDetailViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoHomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoHomeViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoHomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoHomeViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoMicroViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoMicroViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoMicroViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoMicroViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoMineViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoMineViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoMineViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoMineViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoVideoViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/今日头条/tab/GKToutiaoVideoViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/FloatView/GKFloatTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/FloatView/GKFloatTransition.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/FloatView/GKFloatTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/FloatView/GKFloatTransition.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/FloatView/GKFloatView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/FloatView/GKFloatView.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/FloatView/GKFloatView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/FloatView/GKFloatView.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/GKWXViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/GKWXViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/GKWXViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/GKWXViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXDetailViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXDetailViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXFindViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXFindViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXFindViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXFindViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXHomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXHomeViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXHomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXHomeViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXMineViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXMineViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXMineViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/微信/tab/GKWXMineViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomePlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomePlayerViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomePlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomePlayerViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomeSearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomeSearchViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomeSearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomeSearchViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomeViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinHomeViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinPersonalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinPersonalViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinPersonalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinPersonalViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinScrollView.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/抖音/GKDouyinScrollView.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/GKWYMusicViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/GKWYMusicViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/GKWYMusicViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/GKWYMusicViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicAccountViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicAccountViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicAccountViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicAccountViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicDetailViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicDetailViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicFindViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicFindViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicFindViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicFindViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicFriendViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicFriendViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicFriendViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicFriendViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicMineViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicMineViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicMineViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易云音乐/tab/GKWYMusicMineViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/GKWYNewsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/GKWYNewsViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/GKWYNewsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/GKWYNewsViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsCommentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsCommentViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsCommentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsCommentViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsDetailViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsDetailViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsHomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsHomeViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsHomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsHomeViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsLiveViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsLiveViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsLiveViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsLiveViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsNewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsNewViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsNewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsNewViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsProfileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsProfileViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsProfileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsProfileViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsVideoViewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Classes/网易新闻/tab/GKWYNewsVideoViewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/Info.plist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/PrefixHeader.pch -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemo/main.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemoTests/GKNavigationBarViewControllerDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemoTests/GKNavigationBarViewControllerDemoTests.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerDemoTests/Info.plist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/GKNavigationBarViewControllerFramework/Info.plist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Podfile -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Podfile.lock -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQNSArray+Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQNSArray+Sort.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQNSArray+Sort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQNSArray+Sort.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIScrollView+Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIScrollView+Additions.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIScrollView+Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIScrollView+Additions.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUITextFieldView+Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUITextFieldView+Additions.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUITextFieldView+Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUITextFieldView+Additions.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIView+Hierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIView+Hierarchy.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIView+Hierarchy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIView+Hierarchy.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIViewController+Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIViewController+Additions.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIViewController+Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Categories/IQUIViewController+Additions.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Constants/IQKeyboardManagerConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Constants/IQKeyboardManagerConstants.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Constants/IQKeyboardManagerConstantsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/Constants/IQKeyboardManagerConstantsInternal.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQKeyboardManager.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQKeyboardManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQKeyboardManager.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQKeyboardReturnKeyHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQKeyboardReturnKeyHandler.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQKeyboardReturnKeyHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQKeyboardReturnKeyHandler.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQTextView/IQTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQTextView/IQTextView.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQTextView/IQTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQTextView/IQTextView.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQBarButtonItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQBarButtonItem.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQBarButtonItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQBarButtonItem.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQPreviousNextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQPreviousNextView.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQPreviousNextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQPreviousNextView.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQTitleBarButtonItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQTitleBarButtonItem.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQTitleBarButtonItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQTitleBarButtonItem.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQToolbar.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQToolbar.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQUIView+IQKeyboardToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQUIView+IQKeyboardToolbar.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQUIView+IQKeyboardToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/IQKeyboardManager/IQToolbar/IQUIView+IQKeyboardToolbar.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/LICENSE.md -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/IQKeyboardManager/README.md -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Masonry/README.md -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/LICENSE -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/README.md -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/NSBundle+TZImagePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/NSBundle+TZImagePicker.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/NSBundle+TZImagePicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/NSBundle+TZImagePicker.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZAssetCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZAssetCell.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZAssetCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZAssetCell.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZAssetModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZAssetModel.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZAssetModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZAssetModel.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZGifPhotoPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZGifPhotoPreviewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZGifPhotoPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZGifPhotoPreviewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageCropManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageCropManager.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageCropManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageCropManager.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageManager.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageManager.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/MMVideoPreviewPlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/MMVideoPreviewPlay@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/VideoSendIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/VideoSendIcon@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/cs-CZ.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/cs-CZ.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/iCloudError@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/iCloudError@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ko-KP.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ko-KP.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/navi_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/navi_back@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_def_photoPickerVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_def_photoPickerVc@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_def_previewVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_def_previewVc@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_number_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_number_icon@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_original_def@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_original_def@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_original_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_original_sel@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_sel_photoPickerVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_sel_photoPickerVc@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_sel_previewVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/photo_sel_previewVc@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/preview_number_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/preview_number_icon@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/preview_original_def@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/preview_original_def@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/takePicture80@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/takePicture80@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/takePicture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/takePicture@2x.png -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImagePickerController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageRequestOperation.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZImageRequestOperation.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZLocationManager.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZLocationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZLocationManager.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPickerController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPickerController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPreviewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPreviewCell.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPreviewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPreviewCell.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPreviewController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZPhotoPreviewController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZProgressView.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZProgressView.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZVideoPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZVideoPlayerController.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZVideoPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/TZVideoPlayerController.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/UIView+Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/UIView+Layout.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/UIView+Layout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/TZImagePickerController/TZImagePickerController/TZImagePickerController/UIView+Layout.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager-Info.plist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager-dummy.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager-prefix.pch -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager-umbrella.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager.debug.xcconfig -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager.modulemap -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/IQKeyboardManager/IQKeyboardManager.release.xcconfig -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry-Info.plist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry-umbrella.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry.debug.xcconfig -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry.modulemap -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry.release.xcconfig -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-Info.plist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-acknowledgements.plist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-dummy.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-frameworks.sh -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo-umbrella.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo.debug.xcconfig -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo.modulemap -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/Pods-GKNavigationBarViewControllerDemo/Pods-GKNavigationBarViewControllerDemo.release.xcconfig -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController-Info.plist -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController-dummy.m -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController-prefix.pch -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController-umbrella.h -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController.debug.xcconfig -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController.modulemap -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController.release.xcconfig -------------------------------------------------------------------------------- /GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/GKNavigationBarViewControllerDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuintGao/GKNavigationBarViewController/HEAD/README.md --------------------------------------------------------------------------------