0

I am making an app for a Band. We would like to offer 'special content' to app users. (song - mp3 or video (mp4))

We would like to allow the End Users to download & keep this content (not stream it each time)

What are options for this?

1) Wrap as a PodCast? (Simple, Available outside of App - but in 'Postcasts' - not 'Music')

2) Deliver as CoreAudio? Use AVAudioPlayer? (Complex, only Available inside of App)

3) Any way to get a Song/Album into iTunes-Music area from an App?

4

1 回答 1

1

Apple 似乎允许您访问播放项目和查询 iPod 资产元数据,但似乎不允许您的应用程序直接导入。

然而:

您可以为您的 iTunes 歌曲添加一个“openURL”——即“itms:”URL(它会唤起 iTunes)——这将有效地让您的应用程序启动 iTunes 并转到 [免费] 歌曲的“购买”屏幕。单击按钮将使用如下操作:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"itms://itunes.apple.com/us/mysongsurlinthestore"]];
于 2010-11-07T14:55:18.530 回答