菜鸟教程小白 发表于 2022-12-12 13:35:25

iOS 深度链接 : how to embed URL in another URL?


                                            <p><p>我需要使用另一个 URL 深层链接到我的应用,假设我的自定义方案是:</p>

<pre><code>myapp://
</code></pre>

<p>那么深层链接 URL 如下所示:</p>

<pre><code>myapp://?type=url&amp;url=
</code></pre>

<p>问题是“另一个网址”可能包含分隔符,如?、/、&等,我考虑过使用引号:</p>

<pre><code>myapp://?type=url&amp;url=&#34;http://another.url&#34;
</code></pre>

<p>但是另外一个网址也可能有引号,请问有什么办法吗?</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要正确转义第二个 URL 中的所有特殊字符。我使用我写的一个实用方法来提供帮助:</p>

<pre><code>+ (NSString *)encodeString:(NSString *)string {
    NSString *result = (__bridge_transfer NSString *)CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault, (__bridge CFStringRef)string, NULL, CFSTR(&#34;% &#39;\&#34;?=&amp;+&lt;&gt;;:-#\\/~`!&#34;), kCFStringEncodingUTF8);

    return result;
}
</code></pre>

<p>有了它(在某个辅助类中或添加到某个类别中),您可以执行以下操作:</p>

<pre><code>NSString *link = @&#34;http://another.url&#34;;
NSString *escapedLink = ;

NSString *myURL = ;
</code></pre>

<p>请注意,此 <code>encodeString:</code> 方法应用于正确转义您可能用于构建 URL 查询字符串的任何 URL 参数值。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS 深度链接 : how to embed URL in another URL?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18200401/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18200401/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS 深度链接 : how to embed URL in another URL?