打开显示给定页面的 facebook 和 twitter 的代码行是哪一行?
在 Facebook 上尝试过这个
NSURL *target = [[NSURL alloc] initWithString:@"fb://profile/WindyCityCrossFit"];
[[UIApplication sharedApplication] openURL:target];
但它只是把我带到我的新闻提要页面。Twitter也没有给我任何结果。
打开显示给定页面的 facebook 和 twitter 的代码行是哪一行?
在 Facebook 上尝试过这个
NSURL *target = [[NSURL alloc] initWithString:@"fb://profile/WindyCityCrossFit"];
[[UIApplication sharedApplication] openURL:target];
但它只是把我带到我的新闻提要页面。Twitter也没有给我任何结果。
Facebook:
NSURL *url = [NSURL URLWithString:@"fb://profile/130936560286785"];
[[UIApplication sharedApplication] openURL:url];
推特:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"twitter://user?screen_name=MyTwitterID"]];
这应该可以让您访问 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];