我在脸书上发帖。我可以发布一个 URL,但我也想用那个 URL 发布一些描述。我正在使用它-
NSString *shareUrlString = [NSString stringWithFormat:@"http://www.facebook.com/sharer.php?u=%@&t=%@", urlString , description];
NSURL *url = [ [ NSURL alloc ] initWithString:urlString ];
[[UIApplication sharedApplication] openURL:url];
但我无法发布描述。所以你能给出任何想法来做到这一点。我不想使用任何 sdk 或任何 api 来做到这一点。