javascript - Objective-C 组件SeparatedByString
<p><p>我正在尝试使用 window.location 将 url 从 JavaScript 传递到 Objective C。
我的 JavaScript 代码如下所示:</p>
<pre><code>var str = "http://sampleurl:8080/abc";
window.location.href = "jscall:myapp:"+str;
</code></pre>
<p>在 Objective-C中:</p>
<pre><code>NSString *requestString = [ absoluteString];
NSArray *components = ;
if ( > 1 &&
[(NSString *) isEqualToString:@"jscall"]) {
if([(NSString *) isEqualToString:@"myapp"])
{
NSLog(); //this returns just "http"
NSString* str1 = (NSString *);
NSString* str2 = (NSString *);
NSString* str3 = (NSString *);
str2 = ;
str2 = ;
str1 = ;
self.jsLbl.text = ;
//The output of this is "http://sampleurl:8080/abc"
}
return NO;
}
</code></pre>
<p>如果我只使用</p>
<pre><code>NSString* str1 = (NSString *);
</code></pre>
<p>我只得到“http”。
如何限制字符串以将 componentsSeparatedByString 限制为 2?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您不能仅显式拆分前两次出现的 ':',但您可以轻松地使用另一种方法,因为您确切知道字符串在 'http' 之前是什么。只需执行以下操作之一是安全的。 </p>
<pre><code>NSString *urlString = ;
</code></pre>
<p>或</p>
<pre><code>NSUInteger prefixLength = @"jscall:myapp:".length;
NSString *urlString = ;
</code></pre>
<p>第二个更可靠,以防由于某种原因在请求中多次出现该字符串。 </p></p>
<p style="font-size: 20px;">关于javascript -Objective-C组件SeparatedByString,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/37963897/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/37963897/
</a>
</p>
页:
[1]