├── Assets ├── demo.gif ├── demo2.gif └── screen03.PNG ├── FWDraggableSwipePlayer.podspec ├── FWDraggableSwipePlayer └── src │ ├── FWDraggablePlayerManager.h │ ├── FWDraggablePlayerManager.m │ ├── FWPlayerProgressSlider.h │ ├── FWPlayerProgressSlider.m │ ├── FWSwipePlayerBackgroundView.h │ ├── FWSwipePlayerBackgroundView.m │ ├── FWSwipePlayerConfig.h │ ├── FWSwipePlayerConfig.m │ ├── FWSwipePlayerViewController.h │ ├── FWSwipePlayerViewController.m │ ├── FWSwiperPlayerController.h │ ├── FWSwiperPlayerController.m │ ├── UI │ ├── FWSwipePlayerBottomLayer.h │ ├── FWSwipePlayerBottomLayer.m │ ├── FWSwipePlayerLayer.h │ ├── FWSwipePlayerLayer.m │ ├── FWSwipePlayerLoadingLayer.h │ ├── FWSwipePlayerLoadingLayer.m │ ├── FWSwipePlayerNavLayer.h │ ├── FWSwipePlayerNavLayer.m │ ├── FWSwipePlayerSettingLayer.h │ ├── FWSwipePlayerSettingLayer.m │ ├── MovieDetailView.h │ ├── MovieDetailView.m │ └── image │ │ ├── api_scrubber_selected.png │ │ ├── api_scrubber_selected@2x.png │ │ ├── api_tv_scrubber_background.png │ │ ├── api_tv_scrubber_buffer.png │ │ ├── api_tv_scrubber_progress.png │ │ ├── btn_player_setting.png │ │ ├── home_btn_next_series.png │ │ ├── ic_vidcontrol_collapse.png │ │ ├── ic_vidcontrol_collapse_pressed.png │ │ ├── ic_vidcontrol_pause_pressed.png │ │ ├── ic_vidcontrol_play.png │ │ ├── ic_vidcontrol_play_pressed.png │ │ ├── mini_middle_bg.png │ │ ├── phone_my_main_line.png │ │ ├── play_gesture_brightness.png │ │ ├── play_gesture_forward.png │ │ ├── play_gesture_rewind.png │ │ ├── play_mini_p.png │ │ ├── play_mini_p@3x.png │ │ ├── player_guideImg_p.png │ │ ├── plugin_fullscreen_bottom_lock_btn_normal.png │ │ ├── plugin_fullscreen_bottom_lock_btn_selected.png │ │ ├── ppq_play_full_p.png │ │ ├── ppq_play_full_p@3x.png │ │ ├── uploading_button_share.png │ │ ├── uploading_button_share@2x.png │ │ └── uploading_button_share@3x.png │ └── Utility │ ├── FWPlayerColorUtil.h │ └── FWPlayerColorUtil.m ├── FWDraggableSwipePlayerDemo ├── FWDraggableSwipePlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── FWDraggableSwipePlayer.xccheckout │ │ └── xcuserdata │ │ │ └── filly.wang.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── xcdebugger │ │ │ └── Expressions.xcexplist │ └── xcuserdata │ │ └── filly.wang.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── FWDraggableSwipePlayer.xcscheme │ │ └── xcschememanagement.plist ├── FWDraggableSwipePlayer │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── Localizable.strings │ │ └── Main.storyboard │ ├── DemoViewController.h │ ├── DemoViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── en.lproj │ │ └── Localizable.strings │ ├── list.json │ ├── main.m │ ├── src │ │ ├── FWDraggableManager.h │ │ ├── FWDraggableManager.m │ │ ├── FWPlayerProgressSlider.h │ │ ├── FWPlayerProgressSlider.m │ │ ├── FWSwipePlayerBackgroundView.h │ │ ├── FWSwipePlayerBackgroundView.m │ │ ├── FWSwipePlayerConfig.h │ │ ├── FWSwipePlayerConfig.m │ │ ├── FWSwipePlayerViewController.h │ │ ├── FWSwipePlayerViewController.m │ │ ├── FWSwiperPlayerController.h │ │ ├── FWSwiperPlayerController.m │ │ ├── UI │ │ │ ├── FWSwipePlayerBottomLayer.h │ │ │ ├── FWSwipePlayerBottomLayer.m │ │ │ ├── FWSwipePlayerLayer.h │ │ │ ├── FWSwipePlayerLayer.m │ │ │ ├── FWSwipePlayerLoadingLayer.h │ │ │ ├── FWSwipePlayerLoadingLayer.m │ │ │ ├── FWSwipePlayerNavLayer.h │ │ │ ├── FWSwipePlayerNavLayer.m │ │ │ ├── FWSwipePlayerSettingLayer.h │ │ │ ├── FWSwipePlayerSettingLayer.m │ │ │ ├── MovieDetailView.h │ │ │ ├── MovieDetailView.m │ │ │ └── image │ │ │ │ ├── btn_player_pause.png │ │ │ │ ├── btn_player_pause@2x.png │ │ │ │ ├── btn_player_pause@3x.png │ │ │ │ ├── btn_player_play.png │ │ │ │ ├── btn_player_play@2x.png │ │ │ │ ├── btn_player_play@3x.png │ │ │ │ ├── btn_player_setting.png │ │ │ │ ├── home_btn_next_series.png │ │ │ │ ├── ic_vidcontrol_collapse.png │ │ │ │ ├── ic_vidcontrol_collapse_pressed.png │ │ │ │ ├── mini_middle_bg.png │ │ │ │ ├── phone_my_main_line.png │ │ │ │ ├── play_gesture_brightness.png │ │ │ │ ├── play_gesture_forward.png │ │ │ │ ├── play_gesture_rewind.png │ │ │ │ ├── play_mini_p.png │ │ │ │ ├── play_mini_p@3x.png │ │ │ │ ├── plugin_fullscreen_bottom_lock_btn_normal.png │ │ │ │ ├── plugin_fullscreen_bottom_lock_btn_selected.png │ │ │ │ ├── ppq_play_full_p.png │ │ │ │ ├── ppq_play_full_p@3x.png │ │ │ │ ├── uploading_button_share.png │ │ │ │ ├── uploading_button_share@2x.png │ │ │ │ └── uploading_button_share@3x.png │ │ └── Utility │ │ │ ├── FWPlayerColorUtil.h │ │ │ └── FWPlayerColorUtil.m │ ├── zh-Hans.lproj │ │ ├── Localizable.strings │ │ └── Main.strings │ └── zh-Hant.lproj │ │ ├── Localizable.strings │ │ └── Main.strings └── FWDraggableSwipePlayerTests │ ├── FWDraggableSwipePlayerTests.m │ └── Info.plist ├── LICENSE.md ├── README.md └── README.rdoc /Assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/Assets/demo.gif -------------------------------------------------------------------------------- /Assets/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/Assets/demo2.gif -------------------------------------------------------------------------------- /Assets/screen03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/Assets/screen03.PNG -------------------------------------------------------------------------------- /FWDraggableSwipePlayer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer.podspec -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWDraggablePlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWDraggablePlayerManager.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWDraggablePlayerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWDraggablePlayerManager.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWPlayerProgressSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWPlayerProgressSlider.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWPlayerProgressSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWPlayerProgressSlider.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWSwipePlayerBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWSwipePlayerBackgroundView.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWSwipePlayerBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWSwipePlayerBackgroundView.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWSwipePlayerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWSwipePlayerConfig.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWSwipePlayerConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWSwipePlayerConfig.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWSwipePlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWSwipePlayerViewController.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWSwipePlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWSwipePlayerViewController.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWSwiperPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWSwiperPlayerController.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/FWSwiperPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/FWSwiperPlayerController.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/FWSwipePlayerBottomLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/FWSwipePlayerBottomLayer.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/FWSwipePlayerBottomLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/FWSwipePlayerBottomLayer.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/FWSwipePlayerLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLayer.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/FWSwipePlayerLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLayer.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/FWSwipePlayerLoadingLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLoadingLayer.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/FWSwipePlayerLoadingLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLoadingLayer.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/FWSwipePlayerNavLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/FWSwipePlayerNavLayer.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/FWSwipePlayerNavLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/FWSwipePlayerNavLayer.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/FWSwipePlayerSettingLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/FWSwipePlayerSettingLayer.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/FWSwipePlayerSettingLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/FWSwipePlayerSettingLayer.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/MovieDetailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/MovieDetailView.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/MovieDetailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/MovieDetailView.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/api_scrubber_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/api_scrubber_selected.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/api_scrubber_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/api_scrubber_selected@2x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/api_tv_scrubber_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/api_tv_scrubber_background.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/api_tv_scrubber_buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/api_tv_scrubber_buffer.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/api_tv_scrubber_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/api_tv_scrubber_progress.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/btn_player_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/btn_player_setting.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/home_btn_next_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/home_btn_next_series.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_collapse.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_collapse_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_collapse_pressed.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_pause_pressed.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_play.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_play_pressed.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/mini_middle_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/mini_middle_bg.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/phone_my_main_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/phone_my_main_line.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/play_gesture_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/play_gesture_brightness.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/play_gesture_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/play_gesture_forward.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/play_gesture_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/play_gesture_rewind.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/play_mini_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/play_mini_p.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/play_mini_p@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/play_mini_p@3x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/player_guideImg_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/player_guideImg_p.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/plugin_fullscreen_bottom_lock_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/plugin_fullscreen_bottom_lock_btn_normal.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/plugin_fullscreen_bottom_lock_btn_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/plugin_fullscreen_bottom_lock_btn_selected.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/ppq_play_full_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/ppq_play_full_p.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/ppq_play_full_p@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/ppq_play_full_p@3x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/uploading_button_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/uploading_button_share.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/uploading_button_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/uploading_button_share@2x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/UI/image/uploading_button_share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/UI/image/uploading_button_share@3x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/Utility/FWPlayerColorUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/Utility/FWPlayerColorUtil.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayer/src/Utility/FWPlayerColorUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayer/src/Utility/FWPlayerColorUtil.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/project.xcworkspace/xcshareddata/FWDraggableSwipePlayer.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/project.xcworkspace/xcshareddata/FWDraggableSwipePlayer.xccheckout -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/project.xcworkspace/xcuserdata/filly.wang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/project.xcworkspace/xcuserdata/filly.wang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/project.xcworkspace/xcuserdata/filly.wang.xcuserdatad/xcdebugger/Expressions.xcexplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/project.xcworkspace/xcuserdata/filly.wang.xcuserdatad/xcdebugger/Expressions.xcexplist -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/xcuserdata/filly.wang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/xcuserdata/filly.wang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/xcuserdata/filly.wang.xcuserdatad/xcschemes/FWDraggableSwipePlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/xcuserdata/filly.wang.xcuserdatad/xcschemes/FWDraggableSwipePlayer.xcscheme -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/xcuserdata/filly.wang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer.xcodeproj/xcuserdata/filly.wang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/AppDelegate.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/AppDelegate.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/DemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/DemoViewController.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/DemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/DemoViewController.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/Info.plist -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/list.json -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/main.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWDraggableManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWDraggableManager.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWDraggableManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWDraggableManager.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWPlayerProgressSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWPlayerProgressSlider.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWPlayerProgressSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWPlayerProgressSlider.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerBackgroundView.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerBackgroundView.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerConfig.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerConfig.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerViewController.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwipePlayerViewController.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwiperPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwiperPlayerController.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwiperPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/FWSwiperPlayerController.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerBottomLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerBottomLayer.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerBottomLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerBottomLayer.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLayer.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLayer.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLoadingLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLoadingLayer.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLoadingLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerLoadingLayer.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerNavLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerNavLayer.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerNavLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerNavLayer.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerSettingLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerSettingLayer.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerSettingLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/FWSwipePlayerSettingLayer.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/MovieDetailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/MovieDetailView.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/MovieDetailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/MovieDetailView.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_pause.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_pause@2x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_pause@3x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_play.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_play@2x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_play@3x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/btn_player_setting.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/home_btn_next_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/home_btn_next_series.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_collapse.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_collapse_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/ic_vidcontrol_collapse_pressed.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/mini_middle_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/mini_middle_bg.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/phone_my_main_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/phone_my_main_line.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/play_gesture_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/play_gesture_brightness.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/play_gesture_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/play_gesture_forward.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/play_gesture_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/play_gesture_rewind.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/play_mini_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/play_mini_p.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/play_mini_p@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/play_mini_p@3x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/plugin_fullscreen_bottom_lock_btn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/plugin_fullscreen_bottom_lock_btn_normal.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/plugin_fullscreen_bottom_lock_btn_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/plugin_fullscreen_bottom_lock_btn_selected.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/ppq_play_full_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/ppq_play_full_p.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/ppq_play_full_p@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/ppq_play_full_p@3x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/uploading_button_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/uploading_button_share.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/uploading_button_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/uploading_button_share@2x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/uploading_button_share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/UI/image/uploading_button_share@3x.png -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/Utility/FWPlayerColorUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/Utility/FWPlayerColorUtil.h -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/Utility/FWPlayerColorUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/src/Utility/FWPlayerColorUtil.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayer/zh-Hant.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayerTests/FWDraggableSwipePlayerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayerTests/FWDraggableSwipePlayerTests.m -------------------------------------------------------------------------------- /FWDraggableSwipePlayerDemo/FWDraggableSwipePlayerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/FWDraggableSwipePlayerDemo/FWDraggableSwipePlayerTests/Info.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillywong/FWDraggableSwipePlayer/HEAD/README.md -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------