我已经创建了一个应用程序,我想创建一个与Facebook用户共享此应用程序的UIButton。 我写了以下代码:
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 {
}
我使用了着名水果忍者的示例网址,因为我的应用尚未在应用商店中存在且没有自己的网址。
问题: 如果该应用程序尚未在iTunes上,我还没有iTunes URL可供分享...那么我该如何分享我的应用程序?
非常感谢帮助...