如何在Swift 2.0中获取字符串的长度?

前端之家收集整理的这篇文章主要介绍了如何在Swift 2.0中获取字符串的长度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
到目前为止,它是:
let string = "my example string"
if count(string) >= 3 { ... }

但是现在我得到一个错误

count is unavailable: access the count property on the collection. Type String doesn’t conform to protocol CollectionType

哦,很简单:

string.characters.count

原文链接:https://www.f2er.com/swift/320618.html

猜你在找的Swift相关文章