菜鸟教程小白 发表于 2022-12-13 13:08:22

iphone - 使用 iphone sharekit 在一篇文章中发布多个 url


                                            <p><p>我想使用共享工具包发布如下文字(在 twitter、fb、邮件上):</p>

<blockquote>
<p>Hi,</p>

<p>This is share text</p>

<p>Click here to do something <em>&lt;=== this should be a link</em></p>

<p>Click here to another something <em>&lt;=== this should be a link</em></p>

<p>Cheers</p>
</blockquote>

<p>我有以下代码:</p>

<pre><code>-(IBAction)shareOnTwitter:(id)sender
{
    ;
    SHKItem *item;
    NSURL *url = ;
    item = ;
    ;

}

- (IBAction)shareOnFacebook:(id)sender
{
    SHKItem *item;
    NSURL *url = ;
    item = ;
    ;

}

- (IBAction)shareWithMail:(id)sender
{
    SHKItem *item;
    NSURL *url = ;
    item = ;
    ;

}
</code></pre>

<p>但 url 附加在末尾。如何在我的文本中添加多个链接并将链接置于中间。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您必须更改处理这些服务的 ShareKit 类:</p>

<ul>
<li>SHKFacebook.m:“-(BOOL)send”方法。</li>
<li>SHKTwitter.m:“-(void)showTwitterForm”方法。</li>
<li>SHKMail.m:“-(BOOL)sendMail”方法。</li>
</ul>

<p>对于 Twitter 和 Mail 来说,这很容易,您只需要根据需要创建一个带有消息文本的 NSString。使用 Facebook 你必须更改附件,你可以看到 facebook API <a href="https://developers.facebook.com/docs/guides/attachments/" rel="noreferrer noopener nofollow">here</a>更多选择。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 使用 iphone sharekit 在一篇文章中发布多个 url,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10124340/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10124340/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 使用 iphone sharekit 在一篇文章中发布多个 url