4

私のプロジェクト(iOS 7.0)でSoundCloud APIのSCShareViewControllerを使用しているため、ユーザーはSoundCloud UIを介してSoundCloudとFacebookでオーディオを共有できます。SoundCloud へのアップロードは完璧に機能しています。しかし、Facebookでの共有は機能していません=/

誰でもこれで私を助けることができますか?

Facebookでアプリを作成する必要はありますか? それとも、代わりにすでにSoundCloudのものを使用していますか?

編集:

これが私のコードです:

NSURL *trackURL = [NSURL fileURLWithPath:trackPath];

SCShareViewController *shareViewController;
shareViewController = [SCShareViewController shareViewControllerWithFileURL:trackURL
                                                          completionHandler:^(NSDictionary *trackInfo, NSError *error){

      if (SC_CANCELED(error)) {
          NSLog(@"Canceled!");
      } else if (error) {
          NSLog(@"Ooops, something went wrong: %@", [error localizedDescription]);
      } else {
          NSLog(@"Uploaded track: %@", trackInfo);
      }

  }];

[self presentModalViewController:shareViewController animated:YES];
4

0 に答える 0