LoginSignup
2
1

More than 5 years have passed since last update.

iOSで音声再生アプリを作る

Posted at

自分の備忘メモです。

バックグラウンド再生をする場合

Info.plistに以下を追記する

<key>UIBackgroundModes</key>
<array>
    <string>audio</string>
</array>

リモートの音声ファイルを使って再生する場合

Info.plistに以下を追記する

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
        <true/>
</dict>

これを追記しないと、リモートファイルの読み込みができないで、ハマる。

2
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
2
1