├── .DS_Store ├── APP4.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── apple.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ │ └── user.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ ├── apple.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ └── xcschemes │ │ ├── APP4.xcscheme │ │ └── xcschememanagement.plist │ └── user.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── APP4.xcscheme │ └── xcschememanagement.plist ├── APP4 ├── .DS_Store ├── APP4-Info.plist ├── APP4-Prefix.pch ├── Appearance │ ├── AddButton.h │ ├── AddButton.m │ ├── BackwardButton.h │ ├── BackwardButton.m │ ├── ButtonView.h │ ├── ButtonView.m │ ├── CountLabel.h │ ├── CountLabel.m │ ├── CustomBarView.h │ ├── CustomBarView.m │ ├── CustomImageView.h │ ├── CustomImageView.m │ ├── ForwardButton.h │ ├── ForwardButton.m │ ├── LabelView.h │ ├── LabelView.m │ ├── MicrophoneButton.h │ ├── MicrophoneButton.m │ ├── MultipleTrackSlider.h │ ├── MultipleTrackSlider.m │ ├── PauseButton.h │ ├── PauseButton.m │ ├── PlayButton.h │ ├── PlayButton.m │ ├── PopMenu.h │ ├── PopMenu.m │ ├── SettingButton.h │ ├── SettingButton.m │ ├── ThumbImageView.h │ └── ThumbImageView.m ├── CardCell.h ├── CardCell.m ├── CardCell.xib ├── CardSetViewController.h ├── CardSetViewController.m ├── CardSetViewController.xib ├── CardViewController.h ├── CardViewController.m ├── CardViewController.xib ├── Class │ ├── .DS_Store │ ├── ASIHTTPRequest │ │ ├── .DS_Store │ │ └── External │ │ │ └── .DS_Store │ ├── AudiosPackage.h │ ├── AudiosPackage.m │ ├── ImagesPackage.h │ ├── ImagesPackage.m │ ├── LETGlossaryManagement.h │ ├── LETGlossaryManagement.m │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ ├── PlayView.h │ ├── PlayView.m │ ├── SubtitlePackage.h │ └── SubtitlePackage.m ├── DowntonAbbey.jpg ├── FileViewController.h ├── FileViewController.m ├── FileViewController.xib ├── FirstViewController.h ├── FirstViewController.m ├── FirstViewController.xib ├── Friends.jpg ├── GlossaryCell.h ├── GlossaryCell.m ├── GlossaryCell.xib ├── GlossaryManagement.h ├── GlossaryManagement.m ├── GlossaryViewController.h ├── GlossaryViewController.m ├── GlossaryViewController.xib ├── PlayViewController.h ├── PlayViewController.m ├── PlayViewController.xib ├── XXXAppDelegate.h ├── XXXAppDelegate.m ├── en.lproj │ └── InfoPlist.strings ├── main.m └── posters │ ├── .DS_Store │ ├── 2 Broke Girls.jpg │ ├── Bones.jpg │ ├── Boston Legal.jpg │ ├── Brothers and Sisters.jpg │ ├── CSI.jpg │ ├── Cold Case.jpg │ ├── Criminal Minds.jpg │ ├── Desperate Housewives.jpg │ ├── Dexter.jpg │ ├── Downton Abbey.jpg │ ├── Friends2.jpg │ ├── Fringe.jpg │ ├── Gossip Girl.jpg │ ├── Grey's Anatomy.jpg │ ├── Heroes.jpg │ ├── House.jpg │ ├── How I Met Your Mother.jpg │ ├── Legend of The Seeker.jpg │ ├── Nikita.jpg │ ├── Nip Tuck.jpg │ ├── Prison Break.jpg │ ├── Revenge.jpg │ ├── Rome.jpg │ ├── Sherlock.jpg │ ├── Skins.jpg │ ├── The 4400.jpg │ ├── The Big Bang Theory.jpg │ ├── The Big Bang Theory2.jpg │ ├── The Closer.jpg │ ├── The Good Wife.jpg │ ├── The Killing.jpg │ ├── The Office.jpg │ ├── The Pretender.jpg │ ├── The Prisoner.jpg │ ├── True Blood.jpg │ ├── Ugly Betty.jpg │ ├── Weeds.jpg │ └── Will and Grace.jpg ├── ASIHTTPRequest ├── .DS_Store ├── ASIAuthenticationDialog.h ├── ASIAuthenticationDialog.m ├── ASICacheDelegate.h ├── ASIDataCompressor.h ├── ASIDataCompressor.m ├── ASIDataDecompressor.h ├── ASIDataDecompressor.m ├── ASIDownloadCache.h ├── ASIDownloadCache.m ├── ASIFormDataRequest.h ├── ASIFormDataRequest.m ├── ASIHTTPRequest.h ├── ASIHTTPRequest.m ├── ASIHTTPRequestConfig.h ├── ASIHTTPRequestDelegate.h ├── ASIInputStream.h ├── ASIInputStream.m ├── ASINetworkQueue.h ├── ASINetworkQueue.m ├── ASIProgressDelegate.h ├── External │ ├── .DS_Store │ ├── GHUnit │ │ └── README-GHUnit │ └── Reachability │ │ ├── Reachability.h │ │ └── Reachability.m └── Readme.txt └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/.DS_Store -------------------------------------------------------------------------------- /APP4.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /APP4.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /APP4.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /APP4.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /APP4.xcodeproj/project.xcworkspace/xcuserdata/user.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/project.xcworkspace/xcuserdata/user.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /APP4.xcodeproj/project.xcworkspace/xcuserdata/user.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/project.xcworkspace/xcuserdata/user.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /APP4.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /APP4.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/APP4.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/APP4.xcscheme -------------------------------------------------------------------------------- /APP4.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /APP4.xcodeproj/xcuserdata/user.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/xcuserdata/user.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /APP4.xcodeproj/xcuserdata/user.xcuserdatad/xcschemes/APP4.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/xcuserdata/user.xcuserdatad/xcschemes/APP4.xcscheme -------------------------------------------------------------------------------- /APP4.xcodeproj/xcuserdata/user.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4.xcodeproj/xcuserdata/user.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /APP4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/.DS_Store -------------------------------------------------------------------------------- /APP4/APP4-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/APP4-Info.plist -------------------------------------------------------------------------------- /APP4/APP4-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/APP4-Prefix.pch -------------------------------------------------------------------------------- /APP4/Appearance/AddButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/AddButton.h -------------------------------------------------------------------------------- /APP4/Appearance/AddButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/AddButton.m -------------------------------------------------------------------------------- /APP4/Appearance/BackwardButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/BackwardButton.h -------------------------------------------------------------------------------- /APP4/Appearance/BackwardButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/BackwardButton.m -------------------------------------------------------------------------------- /APP4/Appearance/ButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/ButtonView.h -------------------------------------------------------------------------------- /APP4/Appearance/ButtonView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/ButtonView.m -------------------------------------------------------------------------------- /APP4/Appearance/CountLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/CountLabel.h -------------------------------------------------------------------------------- /APP4/Appearance/CountLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/CountLabel.m -------------------------------------------------------------------------------- /APP4/Appearance/CustomBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/CustomBarView.h -------------------------------------------------------------------------------- /APP4/Appearance/CustomBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/CustomBarView.m -------------------------------------------------------------------------------- /APP4/Appearance/CustomImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/CustomImageView.h -------------------------------------------------------------------------------- /APP4/Appearance/CustomImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/CustomImageView.m -------------------------------------------------------------------------------- /APP4/Appearance/ForwardButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/ForwardButton.h -------------------------------------------------------------------------------- /APP4/Appearance/ForwardButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/ForwardButton.m -------------------------------------------------------------------------------- /APP4/Appearance/LabelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/LabelView.h -------------------------------------------------------------------------------- /APP4/Appearance/LabelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/LabelView.m -------------------------------------------------------------------------------- /APP4/Appearance/MicrophoneButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/MicrophoneButton.h -------------------------------------------------------------------------------- /APP4/Appearance/MicrophoneButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/MicrophoneButton.m -------------------------------------------------------------------------------- /APP4/Appearance/MultipleTrackSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/MultipleTrackSlider.h -------------------------------------------------------------------------------- /APP4/Appearance/MultipleTrackSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/MultipleTrackSlider.m -------------------------------------------------------------------------------- /APP4/Appearance/PauseButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/PauseButton.h -------------------------------------------------------------------------------- /APP4/Appearance/PauseButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/PauseButton.m -------------------------------------------------------------------------------- /APP4/Appearance/PlayButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/PlayButton.h -------------------------------------------------------------------------------- /APP4/Appearance/PlayButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/PlayButton.m -------------------------------------------------------------------------------- /APP4/Appearance/PopMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/PopMenu.h -------------------------------------------------------------------------------- /APP4/Appearance/PopMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/PopMenu.m -------------------------------------------------------------------------------- /APP4/Appearance/SettingButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/SettingButton.h -------------------------------------------------------------------------------- /APP4/Appearance/SettingButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/SettingButton.m -------------------------------------------------------------------------------- /APP4/Appearance/ThumbImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/ThumbImageView.h -------------------------------------------------------------------------------- /APP4/Appearance/ThumbImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Appearance/ThumbImageView.m -------------------------------------------------------------------------------- /APP4/CardCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/CardCell.h -------------------------------------------------------------------------------- /APP4/CardCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/CardCell.m -------------------------------------------------------------------------------- /APP4/CardCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/CardCell.xib -------------------------------------------------------------------------------- /APP4/CardSetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/CardSetViewController.h -------------------------------------------------------------------------------- /APP4/CardSetViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/CardSetViewController.m -------------------------------------------------------------------------------- /APP4/CardSetViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/CardSetViewController.xib -------------------------------------------------------------------------------- /APP4/CardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/CardViewController.h -------------------------------------------------------------------------------- /APP4/CardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/CardViewController.m -------------------------------------------------------------------------------- /APP4/CardViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/CardViewController.xib -------------------------------------------------------------------------------- /APP4/Class/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/.DS_Store -------------------------------------------------------------------------------- /APP4/Class/ASIHTTPRequest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/ASIHTTPRequest/.DS_Store -------------------------------------------------------------------------------- /APP4/Class/ASIHTTPRequest/External/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/ASIHTTPRequest/External/.DS_Store -------------------------------------------------------------------------------- /APP4/Class/AudiosPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/AudiosPackage.h -------------------------------------------------------------------------------- /APP4/Class/AudiosPackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/AudiosPackage.m -------------------------------------------------------------------------------- /APP4/Class/ImagesPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/ImagesPackage.h -------------------------------------------------------------------------------- /APP4/Class/ImagesPackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/ImagesPackage.m -------------------------------------------------------------------------------- /APP4/Class/LETGlossaryManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/LETGlossaryManagement.h -------------------------------------------------------------------------------- /APP4/Class/LETGlossaryManagement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/LETGlossaryManagement.m -------------------------------------------------------------------------------- /APP4/Class/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/MBProgressHUD.h -------------------------------------------------------------------------------- /APP4/Class/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/MBProgressHUD.m -------------------------------------------------------------------------------- /APP4/Class/PlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/PlayView.h -------------------------------------------------------------------------------- /APP4/Class/PlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/PlayView.m -------------------------------------------------------------------------------- /APP4/Class/SubtitlePackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/SubtitlePackage.h -------------------------------------------------------------------------------- /APP4/Class/SubtitlePackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Class/SubtitlePackage.m -------------------------------------------------------------------------------- /APP4/DowntonAbbey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/DowntonAbbey.jpg -------------------------------------------------------------------------------- /APP4/FileViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/FileViewController.h -------------------------------------------------------------------------------- /APP4/FileViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/FileViewController.m -------------------------------------------------------------------------------- /APP4/FileViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/FileViewController.xib -------------------------------------------------------------------------------- /APP4/FirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/FirstViewController.h -------------------------------------------------------------------------------- /APP4/FirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/FirstViewController.m -------------------------------------------------------------------------------- /APP4/FirstViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/FirstViewController.xib -------------------------------------------------------------------------------- /APP4/Friends.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/Friends.jpg -------------------------------------------------------------------------------- /APP4/GlossaryCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/GlossaryCell.h -------------------------------------------------------------------------------- /APP4/GlossaryCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/GlossaryCell.m -------------------------------------------------------------------------------- /APP4/GlossaryCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/GlossaryCell.xib -------------------------------------------------------------------------------- /APP4/GlossaryManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/GlossaryManagement.h -------------------------------------------------------------------------------- /APP4/GlossaryManagement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/GlossaryManagement.m -------------------------------------------------------------------------------- /APP4/GlossaryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/GlossaryViewController.h -------------------------------------------------------------------------------- /APP4/GlossaryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/GlossaryViewController.m -------------------------------------------------------------------------------- /APP4/GlossaryViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/GlossaryViewController.xib -------------------------------------------------------------------------------- /APP4/PlayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/PlayViewController.h -------------------------------------------------------------------------------- /APP4/PlayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/PlayViewController.m -------------------------------------------------------------------------------- /APP4/PlayViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/PlayViewController.xib -------------------------------------------------------------------------------- /APP4/XXXAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/XXXAppDelegate.h -------------------------------------------------------------------------------- /APP4/XXXAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/XXXAppDelegate.m -------------------------------------------------------------------------------- /APP4/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /APP4/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/main.m -------------------------------------------------------------------------------- /APP4/posters/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/.DS_Store -------------------------------------------------------------------------------- /APP4/posters/2 Broke Girls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/2 Broke Girls.jpg -------------------------------------------------------------------------------- /APP4/posters/Bones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Bones.jpg -------------------------------------------------------------------------------- /APP4/posters/Boston Legal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Boston Legal.jpg -------------------------------------------------------------------------------- /APP4/posters/Brothers and Sisters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Brothers and Sisters.jpg -------------------------------------------------------------------------------- /APP4/posters/CSI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/CSI.jpg -------------------------------------------------------------------------------- /APP4/posters/Cold Case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Cold Case.jpg -------------------------------------------------------------------------------- /APP4/posters/Criminal Minds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Criminal Minds.jpg -------------------------------------------------------------------------------- /APP4/posters/Desperate Housewives.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Desperate Housewives.jpg -------------------------------------------------------------------------------- /APP4/posters/Dexter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Dexter.jpg -------------------------------------------------------------------------------- /APP4/posters/Downton Abbey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Downton Abbey.jpg -------------------------------------------------------------------------------- /APP4/posters/Friends2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Friends2.jpg -------------------------------------------------------------------------------- /APP4/posters/Fringe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Fringe.jpg -------------------------------------------------------------------------------- /APP4/posters/Gossip Girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Gossip Girl.jpg -------------------------------------------------------------------------------- /APP4/posters/Grey's Anatomy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Grey's Anatomy.jpg -------------------------------------------------------------------------------- /APP4/posters/Heroes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Heroes.jpg -------------------------------------------------------------------------------- /APP4/posters/House.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/House.jpg -------------------------------------------------------------------------------- /APP4/posters/How I Met Your Mother.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/How I Met Your Mother.jpg -------------------------------------------------------------------------------- /APP4/posters/Legend of The Seeker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Legend of The Seeker.jpg -------------------------------------------------------------------------------- /APP4/posters/Nikita.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Nikita.jpg -------------------------------------------------------------------------------- /APP4/posters/Nip Tuck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Nip Tuck.jpg -------------------------------------------------------------------------------- /APP4/posters/Prison Break.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Prison Break.jpg -------------------------------------------------------------------------------- /APP4/posters/Revenge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Revenge.jpg -------------------------------------------------------------------------------- /APP4/posters/Rome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Rome.jpg -------------------------------------------------------------------------------- /APP4/posters/Sherlock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Sherlock.jpg -------------------------------------------------------------------------------- /APP4/posters/Skins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Skins.jpg -------------------------------------------------------------------------------- /APP4/posters/The 4400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/The 4400.jpg -------------------------------------------------------------------------------- /APP4/posters/The Big Bang Theory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/The Big Bang Theory.jpg -------------------------------------------------------------------------------- /APP4/posters/The Big Bang Theory2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/The Big Bang Theory2.jpg -------------------------------------------------------------------------------- /APP4/posters/The Closer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/The Closer.jpg -------------------------------------------------------------------------------- /APP4/posters/The Good Wife.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/The Good Wife.jpg -------------------------------------------------------------------------------- /APP4/posters/The Killing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/The Killing.jpg -------------------------------------------------------------------------------- /APP4/posters/The Office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/The Office.jpg -------------------------------------------------------------------------------- /APP4/posters/The Pretender.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/The Pretender.jpg -------------------------------------------------------------------------------- /APP4/posters/The Prisoner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/The Prisoner.jpg -------------------------------------------------------------------------------- /APP4/posters/True Blood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/True Blood.jpg -------------------------------------------------------------------------------- /APP4/posters/Ugly Betty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Ugly Betty.jpg -------------------------------------------------------------------------------- /APP4/posters/Weeds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Weeds.jpg -------------------------------------------------------------------------------- /APP4/posters/Will and Grace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/APP4/posters/Will and Grace.jpg -------------------------------------------------------------------------------- /ASIHTTPRequest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/.DS_Store -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIAuthenticationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIAuthenticationDialog.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIAuthenticationDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIAuthenticationDialog.m -------------------------------------------------------------------------------- /ASIHTTPRequest/ASICacheDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASICacheDelegate.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIDataCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIDataCompressor.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIDataCompressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIDataCompressor.m -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIDataDecompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIDataDecompressor.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIDataDecompressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIDataDecompressor.m -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIDownloadCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIDownloadCache.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIDownloadCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIDownloadCache.m -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIFormDataRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIFormDataRequest.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIFormDataRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIFormDataRequest.m -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIHTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIHTTPRequest.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIHTTPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIHTTPRequest.m -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIHTTPRequestConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIHTTPRequestConfig.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIHTTPRequestDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIHTTPRequestDelegate.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIInputStream.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIInputStream.m -------------------------------------------------------------------------------- /ASIHTTPRequest/ASINetworkQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASINetworkQueue.h -------------------------------------------------------------------------------- /ASIHTTPRequest/ASINetworkQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASINetworkQueue.m -------------------------------------------------------------------------------- /ASIHTTPRequest/ASIProgressDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/ASIProgressDelegate.h -------------------------------------------------------------------------------- /ASIHTTPRequest/External/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/External/.DS_Store -------------------------------------------------------------------------------- /ASIHTTPRequest/External/GHUnit/README-GHUnit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/External/GHUnit/README-GHUnit -------------------------------------------------------------------------------- /ASIHTTPRequest/External/Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/External/Reachability/Reachability.h -------------------------------------------------------------------------------- /ASIHTTPRequest/External/Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/External/Reachability/Reachability.m -------------------------------------------------------------------------------- /ASIHTTPRequest/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/ASIHTTPRequest/Readme.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingWZ/AVPlayer/HEAD/README.md --------------------------------------------------------------------------------