ios - xcode iOS每次检查url前缀
<p><p>我刚开始使用 Xcode,我需要一个简短的脚本来验证我的 url 前缀</p>
<p>在php中会是这样的</p>
<pre><code><?php
$prefix1 = "loc:";
if (Webview == $prefix1)
{
echo "Url Prefix is loc:";
}
?>
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code>NSURL *url = ...;
if ([ isEqualToString:@"loc"]) {
NSLog(@"Url Prefix is loc:");
}
</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]