Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将我的应用程序从 swift 2.3 转换为 swift 3.0。我面临以下问题。我正在尝试检查是否找到了一系列字符集。代码在 swift 2.3 和将其转换为 swift 3.0 时工作正常。
有人可以帮我解决这个问题。提前致谢。
弄清楚自己的最简单方法是重新键入方法并使用代码完成。
或者阅读文档
这段代码在操场上工作:
let string = String() let characterSet = CharacterSet() let stringSet : String = string as String stringSet.rangeOfCharacter(from: characterSet.inverted, options: String.CompareOptions.caseInsensitive)