├── AudioPlayerTemplate.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── AudioPlayerTemplate.xccheckout │ └── xcuserdata │ │ └── ymc-thzi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ymc-thzi.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── AudioPlayerTemplate.xcscheme │ └── xcschememanagement.plist ├── AudioPlayerTemplate ├── AppDelegate.h ├── AppDelegate.m ├── AudioPlayerTemplate-Info.plist ├── AudioPlayerTemplate-Prefix.pch ├── Base.lproj │ └── Main_iPhone.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── ViewController.h ├── ViewController.m ├── YMCAudioPlayer.h ├── YMCAudioPlayer.m ├── audiofile.mp3 ├── audioplayer_pause.png ├── audioplayer_play.png ├── en.lproj │ └── InfoPlist.strings ├── main.m └── tex.jpg ├── AudioPlayerTemplateTests ├── AudioPlayerTemplateTests-Info.plist ├── AudioPlayerTemplateTests.m └── en.lproj │ └── InfoPlist.strings └── README.md /AudioPlayerTemplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AudioPlayerTemplate.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AudioPlayerTemplate.xcodeproj/project.xcworkspace/xcshareddata/AudioPlayerTemplate.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate.xcodeproj/project.xcworkspace/xcshareddata/AudioPlayerTemplate.xccheckout -------------------------------------------------------------------------------- /AudioPlayerTemplate.xcodeproj/project.xcworkspace/xcuserdata/ymc-thzi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate.xcodeproj/project.xcworkspace/xcuserdata/ymc-thzi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AudioPlayerTemplate.xcodeproj/xcuserdata/ymc-thzi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate.xcodeproj/xcuserdata/ymc-thzi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /AudioPlayerTemplate.xcodeproj/xcuserdata/ymc-thzi.xcuserdatad/xcschemes/AudioPlayerTemplate.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate.xcodeproj/xcuserdata/ymc-thzi.xcuserdatad/xcschemes/AudioPlayerTemplate.xcscheme -------------------------------------------------------------------------------- /AudioPlayerTemplate.xcodeproj/xcuserdata/ymc-thzi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate.xcodeproj/xcuserdata/ymc-thzi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AudioPlayerTemplate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/AppDelegate.h -------------------------------------------------------------------------------- /AudioPlayerTemplate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/AppDelegate.m -------------------------------------------------------------------------------- /AudioPlayerTemplate/AudioPlayerTemplate-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/AudioPlayerTemplate-Info.plist -------------------------------------------------------------------------------- /AudioPlayerTemplate/AudioPlayerTemplate-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/AudioPlayerTemplate-Prefix.pch -------------------------------------------------------------------------------- /AudioPlayerTemplate/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /AudioPlayerTemplate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AudioPlayerTemplate/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /AudioPlayerTemplate/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/ViewController.h -------------------------------------------------------------------------------- /AudioPlayerTemplate/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/ViewController.m -------------------------------------------------------------------------------- /AudioPlayerTemplate/YMCAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/YMCAudioPlayer.h -------------------------------------------------------------------------------- /AudioPlayerTemplate/YMCAudioPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/YMCAudioPlayer.m -------------------------------------------------------------------------------- /AudioPlayerTemplate/audiofile.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/audiofile.mp3 -------------------------------------------------------------------------------- /AudioPlayerTemplate/audioplayer_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/audioplayer_pause.png -------------------------------------------------------------------------------- /AudioPlayerTemplate/audioplayer_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/audioplayer_play.png -------------------------------------------------------------------------------- /AudioPlayerTemplate/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AudioPlayerTemplate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/main.m -------------------------------------------------------------------------------- /AudioPlayerTemplate/tex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplate/tex.jpg -------------------------------------------------------------------------------- /AudioPlayerTemplateTests/AudioPlayerTemplateTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplateTests/AudioPlayerTemplateTests-Info.plist -------------------------------------------------------------------------------- /AudioPlayerTemplateTests/AudioPlayerTemplateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/AudioPlayerTemplateTests/AudioPlayerTemplateTests.m -------------------------------------------------------------------------------- /AudioPlayerTemplateTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/ios-audio-player/HEAD/README.md --------------------------------------------------------------------------------