練習iOS SDK — 播音樂AVFoundation

Chiu
Aug 12, 2022

--

📌練習項目

  • 播音樂: AVFoundation,URL,AVPlayer

🟡Source code

import Foundationimport AVFoundationlet url = URL(string: "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview115/v4/99/56/19/995619c5-5310-d3b0-de45-0ff352bc58d9/mzaf_11001517585085545132.plus.aac.p.m4a")let player = AVPlayer(url: url!)player.play()

使用AVPlayer播放音樂,url為音檔網址

p.s : 音樂為 IU 的Blueming 輕快俏皮的歌曲推薦大家

🟡References

--

--