├── PlayAudioFIle.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── michal.xcuserdatad │ └── xcschemes │ ├── PlayAudioFIle.xcscheme │ └── xcschememanagement.plist ├── PlayAudioFIle ├── .gitignore ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── AudioData.swift ├── AudioPlayer.swift ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DisplayAudioFile.swift ├── Info.plist └── ViewController.swift ├── PlayAudioFIleTests ├── Info.plist └── PlayAudioFIleTests.swift ├── PlayAudioFIleUITests ├── Info.plist └── PlayAudioFIleUITests.swift ├── README.md └── test.mp3 /PlayAudioFIle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PlayAudioFIle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PlayAudioFIle.xcodeproj/xcuserdata/michal.xcuserdatad/xcschemes/PlayAudioFIle.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle.xcodeproj/xcuserdata/michal.xcuserdatad/xcschemes/PlayAudioFIle.xcscheme -------------------------------------------------------------------------------- /PlayAudioFIle.xcodeproj/xcuserdata/michal.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle.xcodeproj/xcuserdata/michal.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PlayAudioFIle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle/.gitignore -------------------------------------------------------------------------------- /PlayAudioFIle/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle/AppDelegate.swift -------------------------------------------------------------------------------- /PlayAudioFIle/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PlayAudioFIle/AudioData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle/AudioData.swift -------------------------------------------------------------------------------- /PlayAudioFIle/AudioPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle/AudioPlayer.swift -------------------------------------------------------------------------------- /PlayAudioFIle/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PlayAudioFIle/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PlayAudioFIle/DisplayAudioFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle/DisplayAudioFile.swift -------------------------------------------------------------------------------- /PlayAudioFIle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle/Info.plist -------------------------------------------------------------------------------- /PlayAudioFIle/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIle/ViewController.swift -------------------------------------------------------------------------------- /PlayAudioFIleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIleTests/Info.plist -------------------------------------------------------------------------------- /PlayAudioFIleTests/PlayAudioFIleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIleTests/PlayAudioFIleTests.swift -------------------------------------------------------------------------------- /PlayAudioFIleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIleUITests/Info.plist -------------------------------------------------------------------------------- /PlayAudioFIleUITests/PlayAudioFIleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/PlayAudioFIleUITests/PlayAudioFIleUITests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/README.md -------------------------------------------------------------------------------- /test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standinga/PlayAudioFile/HEAD/test.mp3 --------------------------------------------------------------------------------