我刚开始使用 Xcode,我需要一个简短的脚本来验证我的 url 前缀
在php中会是这样的
<?php
$prefix1 = "loc:";
if (Webview == $prefix1)
{
echo "Url Prefix is loc:";
}
?>
Best Answer-推荐答案 strong>
NSURL *url = ...;
if ([[url scheme] isEqualToString"loc"]) {
NSLog(@"Url Prefix is loc:");
}
关于ios - xcode iOS每次检查url前缀,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/24732788/
|