共有キットを使用して次のようなテキスト(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;
NSURL *url = [NSURL URLWithString:@"http://dosomething.com"];
item = [SHKItem URL:url title:@"HI,\n\nThis is share text\n\nCheers"];
[SHKMail shareItem:item];
}
ただし、URLは最後に追加されます。テキストに複数のリンクを追加して、リンクを中央に配置するにはどうすればよいですか。