提供されているクイック スタート ガイドを使用して、IOS アプリ内で SoundCloud トラックを再生したいと考えています。
ストリームを再生するために提供されるコードは次のとおりです。
SCAccount *account = [SCSoundCloud account];
[SCRequest performMethod:SCRequestMethodGET
onResource:[NSURL URLWithString:audioFile]
usingParameters:nil
withAccount:account
sendingProgressHandler:nil
responseHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
NSError *playerError;
audioPlayer = [[AVAudioPlayer alloc] initWithData:data error:&playerError];
audioPlayer.numberOfLoops = 0;
[audioPlayer prepareToPlay];
[audioPlayer play];
}];
問題: 最初に SoundCloud アカウントにログインせずに SoundCloud ファイルを再生する方法はありますか? すべてのユーザーが SoundCloud の使用を検討することを願っていますが、使いやすさのために、新しいユーザーが以前にいくつかのトラックを聴くことができれば便利です。