菜鸟教程小白 发表于 2022-12-13 14:27:54

ios - 如何将语法 componentsSeparatedByCharactersInSet 更改为 swift 3?


                                            <p><p>我正在尝试将语法“componentsSeparatedByCharactersInSet”更改为 swift 3。但我不起作用。它如何适应swift 3?这是我在 ios 9 中的代码。它显示“'String' 类型的值没有 'componentsSeparatedByCharactersInSet' 的成员。</p>

<pre><code>var delimiter = NSCharacterSet(charactersIn: &#34;,&#34;)
func parseHeaders(fromLines lines: ) -&gt; {
    return lines.componentsSeparatedByCharactersInSet(self.delimiter)
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我已经找到了答案。谢谢。</p>

<pre><code>func parseHeaders(fromLines lines: ) -&gt; {
    return lines.components(separatedBy: self.delimiter as CharacterSet)
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何将语法 componentsSeparatedByCharactersInSet 更改为 swift 3?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/41046542/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/41046542/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何将语法 componentsSeparatedByCharactersInSet 更改为 swift 3?