import UIKit
import AVFoundation
class KeyboardViewController: UIInputViewController {
@IBAction func SoundPlay(_ sender: UIButton) {
let engine = AVAudioEngine()
let sampler=AVAudioUnitSampler()
engine.attach(sampler)
engine.connect(sampler, to:engine.mainMixerNode,format: nil)
do{
try engine.start()
if let url=Bundle.main.url (forResource:"healin01",withExtension:"wav")
{
try sampler.loadAudioFiles(at:[url])
}
}
catch
{print("Couldnt")}
sampler.startNote(36, withVelocity: 90, onChannel: 0)
Нет сообщения об ошибке
Звук файла в корневой папке и вторая копия в подпапке проекта
Я пытаюсь сыграть ноту, нажав на кнопку