パブリック ドメインの映画、オーディオなどの一部のコンテンツを使用するための My App サービス...
特定のウェブサイトの URL からコンテンツをダウンロードするのに 1 か月間 (問題ありません)。
特定のURL(内容あり)はXMLで毎日更新されます。
<?xml version="1.0" encoding="utf-8"?>
<audioCatalog xmlns='http://www.w3.org/2005/Atom' xmlns:storage='https://blahblah.com/contents/'>
<audio date="2012-07-16" category="...">
<title>"..."</title>
<description>"..."</description>
<fileBase>"..."</fileBase>
</audio>
<audio date="2012-07-15" category="...">
<title>"..."</title>
<description>"..."</description>
<fileBase>"..."</fileBase>
</audio>
<audio date="2012-07-14" category="...">
<title>"..."</title>
<description>"..."</description>
<fileBase>"..."</fileBase>
</audio>
.
.
.
</audioCatalog>
ユーザーが UIButton をクリックすると、毎日新しいコンテンツをダウンロードできます。
( https://blahblah.com/ "..."<- fileBase を参照)
imageURL: https://blahblah.com/"...png"
audioURL: https://blahblah.com/"...mp3" <-- user download contents if click on button
以下のサンプルUI。
つまり、ダウンロードボタンを押して、1ヶ月間許可を与えることです。自動更新可能なサブスクリプション サービス (IAP) を使用します。これは利用できますか?
ありがとう。