技術と本について書くブログ

技術と本について書くblog。技術メモなど雑記を書いているblog。

2020-02-05から1日間の記事一覧

【SwiftUI】Buttonを押してmp3を再生する

iOS

AVFoundationをインポート import AVFoundation var sound: AVAudioPlayer? func playSound() { if let path = Bundle.main.path(forResource: "2_cymbal", ofType: "mp3") { do { sound = try AVAudioPlayer(contentsOf: URL(fileURLWithPath: path)) print…