我正在尝试为我的应用创建一个“分享你的分数帖子”,以便在Facebook和Twitter上发布。我正在使用活动视图控制器,但是当我尝试将其发布到Facebook时我遇到了问题(我没有问题发布用我想要的网址推特。我搜索了这个问题,但找不到可以解决问题的有用信息。
代码:
NSString *SharedContent =[NSString stringWithFormat: @"I just got %@ points in myapp.\n Think you can do better? %@ ",[formatter stringFromNumber:_LastGameResult.TotalScore],[NSURL URLWithString:@"http://myapp.co/Home/GetApp"]];
NSArray * applicationActivities = nil;
UIActivityViewController *activityViewController =
[[UIActivityViewController alloc] initWithActivityItems:@[SharedContent,[modelClass GetImage]] applicationActivities:applicationActivities];
[self presentViewController:activityViewController animated:YES completion:nil];
出于某种原因,Facebook在我的网址为http://myapp.co/Home/GetApp
时不接受,但我可以在网址为http://myapp.co/
时发布
我的问题
我需要使用http://myapp.co/Home/GetApp
网址发帖。我怎样才能做到这一点?
答案 0 :(得分:0)
您确定要在设备上设置Facebook帐户(在设置应用中)吗?在模拟器上很容易忘记: - )