0

打开显示给定页面的 facebook 和 twitter 的代码行是哪一行?

在 Facebook 上尝试过这个

NSURL *target = [[NSURL alloc] initWithString:@"fb://profile/WindyCityCrossFit"]; [[UIApplication sharedApplication] openURL:target];

但它只是把我带到我的新闻提要页面。Twitter也没有给我任何结果。

4

2 回答 2

2

Facebook:

NSURL *url = [NSURL URLWithString:@"fb://profile/130936560286785"]; [[UIApplication sharedApplication] openURL:url];

推特:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"twitter://user?screen_name=MyTwitterID"]];

于 2013-04-27T03:06:09.087 回答
0

这应该可以让您访问 facebook,尽管我不确定 twitter。

NSString *urlString = <your url>;
NSString *title = <your message>;
NSString *shareUrlString = [NSString stringWithFormat:@"http://www.facebook.com/sharer.php?u=%@&t=%@", urlString , title];
shareUrlString = [shareUrlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
            NSURL *url = [[NSURL alloc] initWithString:shareUrlString];
            [[UIApplication sharedApplication] openURL:url];
于 2013-04-27T01:59:33.833 回答