ViewController.swift
import Cocoa import AVFoundation class ViewController: NSViewController{ var soundPlayer: AVAudioPlayer? override func viewDidLoad() { super.viewDidLoad() guard let audioFileUrl = Bundle.main.url(forResource: "ding",withExtension: "mp3") else {return} do { self.soundPlayer = try AVAudioPlayer(contentsOf: audioFileUrl) self.soundPlayer?.play(); } catch { print("Sound player not available: \(error)") } } }