├── .DS_Store ├── README.md ├── ScreenShotBack.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── ScreenShotBack.xcscmblueprint │ └── xcuserdata │ │ ├── Maker.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── wenming.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── zhengwenming.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Maker.xcuserdatad │ └── xcschemes │ │ ├── ScreenShotBack.xcscheme │ │ └── xcschememanagement.plist │ ├── wenming.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── ScreenShotBack.xcscheme │ │ └── xcschememanagement.plist │ └── zhengwenming.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── ScreenShotBack.xcscheme │ └── xcschememanagement.plist └── ScreenShotBack ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json ├── TabBar │ ├── Contents.json │ ├── 我的未选中.imageset │ │ ├── Contents.json │ │ ├── btn_user_normal.png │ │ ├── btn_user_normal@2x.png │ │ └── btn_user_normal@3x.png │ ├── 我的选中.imageset │ │ ├── Contents.json │ │ ├── btn_user_selected.png │ │ ├── btn_user_selected@2x.png │ │ └── btn_user_selected@3x.png │ ├── 推荐未选中.imageset │ │ ├── Contents.json │ │ ├── btn_home_normal.png │ │ ├── btn_home_normal@2x.png │ │ └── btn_home_normal@3x.png │ ├── 推荐选中.imageset │ │ ├── Contents.json │ │ ├── btn_home_selected.png │ │ ├── btn_home_selected@2x.png │ │ └── btn_home_selected@3x.png │ ├── 栏目未选中.imageset │ │ ├── Contents.json │ │ ├── btn_column_normal.png │ │ ├── btn_column_normal@2x.png │ │ └── btn_column_normal@3x.png │ ├── 栏目选中.imageset │ │ ├── Contents.json │ │ ├── btn_column_selected.png │ │ ├── btn_column_selected@2x.png │ │ └── btn_column_selected@3x.png │ ├── 直播未选中.imageset │ │ ├── Contents.json │ │ ├── btn_live_normal.png │ │ ├── btn_live_normal@2x.png │ │ └── btn_live_normal@3x.png │ └── 直播选中.imageset │ │ ├── Contents.json │ │ ├── btn_live_selected.png │ │ ├── btn_live_selected@2x.png │ │ └── btn_live_selected@3x.png └── UserGuider │ ├── Contents.json │ ├── new_feature_1.imageset │ ├── Contents.json │ ├── new_feature_1@2x.png │ └── new_feature_1@3x.png │ ├── new_feature_2.imageset │ ├── Contents.json │ ├── new_feature_2@2x.png │ └── new_feature_2@3x.png │ └── new_feature_3.imageset │ ├── Contents.json │ ├── new_feature_3@2x.png │ └── new_feature_3@3x.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── ScreenShotBack.pch ├── ScreenShotPop.gif ├── ViewController ├── .DS_Store ├── PanGestureViewController.h ├── PanGestureViewController.m ├── ScreenShotBack │ ├── BaseNavigationController.h │ ├── BaseNavigationController.m │ ├── BaseViewController.h │ ├── BaseViewController.m │ ├── ScreenShotBackConfig.h │ ├── ScreenShotView.h │ └── ScreenShotView.m ├── UITabbarController │ ├── .DS_Store │ ├── TabBarViewController.h │ └── TabBarViewController.m ├── UserGuiderViewController │ ├── UserGuiderViewController.h │ └── UserGuiderViewController.m ├── WithoutNavigationBarViewController.h ├── WithoutNavigationBarViewController.m ├── WithoutPanGestureViewController.h ├── WithoutPanGestureViewController.m ├── 我的 │ ├── .DS_Store │ ├── MineViewController.h │ └── MineViewController.m ├── 推荐 │ ├── .DS_Store │ ├── RecommendViewController.h │ ├── RecommendViewController.m │ └── RecommendViewController.xib ├── 栏目 │ ├── .DS_Store │ ├── ColumnViewController.h │ ├── ColumnViewController.m │ └── 手势冲突测试 │ │ ├── .DS_Store │ │ ├── ContainerViewController.h │ │ ├── ContainerViewController.m │ │ ├── DetailViewController.h │ │ ├── DetailViewController.m │ │ └── childrenVC │ │ ├── .DS_Store │ │ ├── NearbyViewController.h │ │ ├── NearbyViewController.m │ │ ├── RecommendmeViewController.h │ │ ├── RecommendmeViewController.m │ │ ├── SquareViewController.h │ │ └── SquareViewController.m └── 直播 │ ├── .DS_Store │ ├── OnlineViewController.h │ └── OnlineViewController.m ├── WMScreenShotBack ├── .DS_Store ├── ScreenShotBackConfig.h ├── UINavigationController+WMPop.h ├── UINavigationController+WMPop.m ├── UIViewController+GestureStateBlock.h ├── UIViewController+GestureStateBlock.m ├── WMNavigationController.h ├── WMNavigationController.m ├── WMScreenShotView.h └── WMScreenShotView.m └── main.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/project.xcworkspace/xcshareddata/ScreenShotBack.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/project.xcworkspace/xcshareddata/ScreenShotBack.xcscmblueprint -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/project.xcworkspace/xcuserdata/Maker.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/project.xcworkspace/xcuserdata/Maker.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/project.xcworkspace/xcuserdata/wenming.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/project.xcworkspace/xcuserdata/wenming.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/project.xcworkspace/xcuserdata/zhengwenming.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/project.xcworkspace/xcuserdata/zhengwenming.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/xcuserdata/Maker.xcuserdatad/xcschemes/ScreenShotBack.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/xcuserdata/Maker.xcuserdatad/xcschemes/ScreenShotBack.xcscheme -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/xcuserdata/Maker.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/xcuserdata/Maker.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/xcuserdata/wenming.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/xcuserdata/wenming.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/xcuserdata/wenming.xcuserdatad/xcschemes/ScreenShotBack.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/xcuserdata/wenming.xcuserdatad/xcschemes/ScreenShotBack.xcscheme -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/xcuserdata/wenming.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/xcuserdata/wenming.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/xcuserdata/zhengwenming.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/xcuserdata/zhengwenming.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/xcuserdata/zhengwenming.xcuserdatad/xcschemes/ScreenShotBack.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/xcuserdata/zhengwenming.xcuserdatad/xcschemes/ScreenShotBack.xcscheme -------------------------------------------------------------------------------- /ScreenShotBack.xcodeproj/xcuserdata/zhengwenming.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack.xcodeproj/xcuserdata/zhengwenming.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ScreenShotBack/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/.DS_Store -------------------------------------------------------------------------------- /ScreenShotBack/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/AppDelegate.h -------------------------------------------------------------------------------- /ScreenShotBack/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/AppDelegate.m -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/我的未选中.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/我的未选中.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/我的未选中.imageset/btn_user_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/我的未选中.imageset/btn_user_normal.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/我的未选中.imageset/btn_user_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/我的未选中.imageset/btn_user_normal@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/我的未选中.imageset/btn_user_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/我的未选中.imageset/btn_user_normal@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/我的选中.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/我的选中.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/我的选中.imageset/btn_user_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/我的选中.imageset/btn_user_selected.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/我的选中.imageset/btn_user_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/我的选中.imageset/btn_user_selected@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/我的选中.imageset/btn_user_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/我的选中.imageset/btn_user_selected@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/推荐未选中.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/推荐未选中.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/推荐未选中.imageset/btn_home_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/推荐未选中.imageset/btn_home_normal.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/推荐未选中.imageset/btn_home_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/推荐未选中.imageset/btn_home_normal@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/推荐未选中.imageset/btn_home_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/推荐未选中.imageset/btn_home_normal@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/推荐选中.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/推荐选中.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/推荐选中.imageset/btn_home_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/推荐选中.imageset/btn_home_selected.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/推荐选中.imageset/btn_home_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/推荐选中.imageset/btn_home_selected@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/推荐选中.imageset/btn_home_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/推荐选中.imageset/btn_home_selected@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/栏目未选中.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/栏目未选中.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/栏目未选中.imageset/btn_column_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/栏目未选中.imageset/btn_column_normal.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/栏目未选中.imageset/btn_column_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/栏目未选中.imageset/btn_column_normal@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/栏目未选中.imageset/btn_column_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/栏目未选中.imageset/btn_column_normal@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/栏目选中.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/栏目选中.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/栏目选中.imageset/btn_column_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/栏目选中.imageset/btn_column_selected.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/栏目选中.imageset/btn_column_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/栏目选中.imageset/btn_column_selected@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/栏目选中.imageset/btn_column_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/栏目选中.imageset/btn_column_selected@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/直播未选中.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/直播未选中.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/直播未选中.imageset/btn_live_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/直播未选中.imageset/btn_live_normal.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/直播未选中.imageset/btn_live_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/直播未选中.imageset/btn_live_normal@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/直播未选中.imageset/btn_live_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/直播未选中.imageset/btn_live_normal@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/直播选中.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/直播选中.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/直播选中.imageset/btn_live_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/直播选中.imageset/btn_live_selected.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/直播选中.imageset/btn_live_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/直播选中.imageset/btn_live_selected@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/TabBar/直播选中.imageset/btn_live_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/TabBar/直播选中.imageset/btn_live_selected@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/UserGuider/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/UserGuider/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/UserGuider/new_feature_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/UserGuider/new_feature_1.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/UserGuider/new_feature_1.imageset/new_feature_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/UserGuider/new_feature_1.imageset/new_feature_1@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/UserGuider/new_feature_1.imageset/new_feature_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/UserGuider/new_feature_1.imageset/new_feature_1@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/UserGuider/new_feature_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/UserGuider/new_feature_2.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/UserGuider/new_feature_2.imageset/new_feature_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/UserGuider/new_feature_2.imageset/new_feature_2@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/UserGuider/new_feature_2.imageset/new_feature_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/UserGuider/new_feature_2.imageset/new_feature_2@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/UserGuider/new_feature_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/UserGuider/new_feature_3.imageset/Contents.json -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/UserGuider/new_feature_3.imageset/new_feature_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/UserGuider/new_feature_3.imageset/new_feature_3@2x.png -------------------------------------------------------------------------------- /ScreenShotBack/Assets.xcassets/UserGuider/new_feature_3.imageset/new_feature_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Assets.xcassets/UserGuider/new_feature_3.imageset/new_feature_3@3x.png -------------------------------------------------------------------------------- /ScreenShotBack/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ScreenShotBack/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ScreenShotBack/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/Info.plist -------------------------------------------------------------------------------- /ScreenShotBack/ScreenShotBack.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ScreenShotBack.pch -------------------------------------------------------------------------------- /ScreenShotBack/ScreenShotPop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ScreenShotPop.gif -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/.DS_Store -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/PanGestureViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/PanGestureViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/PanGestureViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/PanGestureViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/ScreenShotBack/BaseNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/ScreenShotBack/BaseNavigationController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/ScreenShotBack/BaseNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/ScreenShotBack/BaseNavigationController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/ScreenShotBack/BaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/ScreenShotBack/BaseViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/ScreenShotBack/BaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/ScreenShotBack/BaseViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/ScreenShotBack/ScreenShotBackConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/ScreenShotBack/ScreenShotBackConfig.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/ScreenShotBack/ScreenShotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/ScreenShotBack/ScreenShotView.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/ScreenShotBack/ScreenShotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/ScreenShotBack/ScreenShotView.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/UITabbarController/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/UITabbarController/.DS_Store -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/UITabbarController/TabBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/UITabbarController/TabBarViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/UITabbarController/TabBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/UITabbarController/TabBarViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/UserGuiderViewController/UserGuiderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/UserGuiderViewController/UserGuiderViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/UserGuiderViewController/UserGuiderViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/UserGuiderViewController/UserGuiderViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/WithoutNavigationBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/WithoutNavigationBarViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/WithoutNavigationBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/WithoutNavigationBarViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/WithoutPanGestureViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/WithoutPanGestureViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/WithoutPanGestureViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/WithoutPanGestureViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/我的/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/我的/.DS_Store -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/我的/MineViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/我的/MineViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/我的/MineViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/我的/MineViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/推荐/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/推荐/.DS_Store -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/推荐/RecommendViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/推荐/RecommendViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/推荐/RecommendViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/推荐/RecommendViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/推荐/RecommendViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/推荐/RecommendViewController.xib -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/.DS_Store -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/ColumnViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/ColumnViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/ColumnViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/ColumnViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/.DS_Store -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/ContainerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/ContainerViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/ContainerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/ContainerViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/DetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/DetailViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/DetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/DetailViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/.DS_Store -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/NearbyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/NearbyViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/NearbyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/NearbyViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/RecommendmeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/RecommendmeViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/RecommendmeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/RecommendmeViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/SquareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/SquareViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/SquareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/栏目/手势冲突测试/childrenVC/SquareViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/直播/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/直播/.DS_Store -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/直播/OnlineViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/直播/OnlineViewController.h -------------------------------------------------------------------------------- /ScreenShotBack/ViewController/直播/OnlineViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/ViewController/直播/OnlineViewController.m -------------------------------------------------------------------------------- /ScreenShotBack/WMScreenShotBack/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/WMScreenShotBack/.DS_Store -------------------------------------------------------------------------------- /ScreenShotBack/WMScreenShotBack/ScreenShotBackConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/WMScreenShotBack/ScreenShotBackConfig.h -------------------------------------------------------------------------------- /ScreenShotBack/WMScreenShotBack/UINavigationController+WMPop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/WMScreenShotBack/UINavigationController+WMPop.h -------------------------------------------------------------------------------- /ScreenShotBack/WMScreenShotBack/UINavigationController+WMPop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/WMScreenShotBack/UINavigationController+WMPop.m -------------------------------------------------------------------------------- /ScreenShotBack/WMScreenShotBack/UIViewController+GestureStateBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/WMScreenShotBack/UIViewController+GestureStateBlock.h -------------------------------------------------------------------------------- /ScreenShotBack/WMScreenShotBack/UIViewController+GestureStateBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/WMScreenShotBack/UIViewController+GestureStateBlock.m -------------------------------------------------------------------------------- /ScreenShotBack/WMScreenShotBack/WMNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/WMScreenShotBack/WMNavigationController.h -------------------------------------------------------------------------------- /ScreenShotBack/WMScreenShotBack/WMNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/WMScreenShotBack/WMNavigationController.m -------------------------------------------------------------------------------- /ScreenShotBack/WMScreenShotBack/WMScreenShotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/WMScreenShotBack/WMScreenShotView.h -------------------------------------------------------------------------------- /ScreenShotBack/WMScreenShotBack/WMScreenShotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/WMScreenShotBack/WMScreenShotView.m -------------------------------------------------------------------------------- /ScreenShotBack/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengwenming/ScreenShotBack/HEAD/ScreenShotBack/main.m --------------------------------------------------------------------------------