我制作了一个应用程序,我想创建一个 UIButton 与 facebook 用户共享这个应用程序。我写了以下代码:
if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]) {
SLComposeViewController *controller = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
[controller setInitialText:@"My App Name"];
[controller addURL:[NSURL URLWithString:@"https://itunes.apple.com/il/app/fruit-ninja-free/id403858572?mt=8/"]];
[self presentViewController:controller animated:YES completion:Nil];
}
else {
}
我使用了著名水果忍者的示例 URL,因为我的应用还没有出现在应用商店并且没有它自己的 URL。
问题: 如果应用程序尚未在 iTunes 上,我还没有要分享的 iTunes URL...那么我如何分享我的应用程序?
非常感谢您的帮助...