Tag: 共享套件

使用iphone的sharekit在一个职位发布多个url

我想发布文本(在Twitter,FB,邮件)如下使用共享工具包: 嗨, 这是共享文本 点击这里做一些事情<===这应该是一个链接 点击这里另一个<===这应该是一个链接 干杯 我有以下代码: -(IBAction)shareOnTwitter:(id)sender { [SHK setRootViewController:self]; SHKItem *item; NSURL *url = [NSURL URLWithString:@"http://dosomething.com"]; item = [SHKItem URL:url title:@"HI,\n\nThis is share text\n\nCheers"]; [SHKTwitter shareItem:item]; } – (IBAction)shareOnFacebook:(id)sender { SHKItem *item; NSURL *url = [NSURL URLWithString:@"http://dosomething.com"]; item = [SHKItem URL:url title:@"HI,\n\nThis is share text\n\nCheers"]; [SHKFacebook shareItem:item]; } – (IBAction)shareWithMail:(id)sender { SHKItem *item; […]