Use of unresolved identifier countElements [duplicate]

拈花ヽ惹草 提交于 2019-12-02 03:20:37

问题


let newLength = countElements(textField.text) + countElements(string) - range.length;

When i'm running my app, it suddenly shows the error of unresolved identifier.


回答1:


It appears you are attempting to use Swift 1.0 code in a later version of Swift. countElements was removed in iOS 8.3 (with Swift 1.2) -- you need to be logged in to see the release notes

in Swift 2.0, it is now str.characters.count



来源:https://stackoverflow.com/questions/31337317/use-of-unresolved-identifier-countelements

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!