【问题标题】:Convert mp3 file into URL in swift快速将 mp3 文件转换为 URL
【发布时间】:2015-08-24 00:51:52
【问题描述】:

我有导入到我的 xCode 项目中的声音文件(mp3 和 m4a),我需要将其转换为 URL。

【问题讨论】:

    标签: ios swift nsurl


    【解决方案1】:

    你可以使用URLForResource:

    if let audioURL = Bundle.main.url(forResource: "audioName", withExtension: "mp3") {
        print(audioURL) 
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2011-06-19
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-08-25
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多