我尝试与 Facebook 共享一个网页 url NSSharingServicePicker
,但它出现在我的 FB 墙上不是作为网页 url(带有描述等),而是像一个链接。
我的代码非常简单。
- (IBAction)share:(id)sender
{
NSURL* url = [NSURL URLWithString:@"http://itunes.apple.com/us/app/travel-route-planner/id504536611"];
NSSharingServicePicker *sharingServicePicker = [[NSSharingServicePicker alloc] initWithItems:[NSArray arrayWithObjects:url, nil]];
sharingServicePicker.delegate = self;
[sharingServicePicker showRelativeToRect:[shareButton bounds]
ofView:shareButton
preferredEdge:NSMinYEdge];
}
我知道这是可以做到的。
Safari 以我需要的方式共享网页。