0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

swiftでボタンを押された時効果音を流す

Last updated at Posted at 2021-05-03

AVFoundationというフレームワークがあるみたいね
以下appleサイト
https://developer.apple.com/documentation/avfoundation/

import AVFoundation

var player: AVAudioPlayer!

func playSound(soundName: String?) {
    let url = Bundle.main.url(forResource: soundName, withExtension: "wav")
    player = try! AVAudioPlayer(contentsOf: url!)
    player.play()
    
}

forResourceに名前
withExtensionに拡張子
を入れると音が鳴るよ

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?