我在我的项目(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];