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

ios - xcode iOS每次检查url前缀


                                            <p><p>我刚开始使用 Xcode,我需要一个简短的脚本来验证我的 url 前缀</p>

<p>在php中会是这样的</p>

<pre><code>&lt;?php
    $prefix1 = &#34;loc:&#34;;
    if (Webview == $prefix1)
    {
      echo &#34;Url Prefix is loc:&#34;;
    }
?&gt;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>NSURL *url = ...;
if ([ isEqualToString:@&#34;loc&#34;]) {
    NSLog(@&#34;Url Prefix is loc:&#34;);
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - xcode iOS每次检查url前缀,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24732788/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24732788/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - xcode iOS每次检查url前缀