不推荐使用Swift 4’substring(from :)’:请使用字符串切片下标和’partial range from’运算符

前端之家收集整理的这篇文章主要介绍了不推荐使用Swift 4’substring(from :)’:请使用字符串切片下标和’partial range from’运算符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚转换了我的小应用程序,但我发现了这个错误
‘substring(from :)’不推荐使用:请使用字符串切片下标和’partial range from’运算符

我的代码是:

let dateObj = dateFormatterFrom.date(from: dateStringa)


    if dateObj != nil {
        cell.detailTextLabel?.text = dateFormatterTo.string(from:(dateObj!))
    } else {
        let index = thisRecord.pubDate.index(thisRecord.pubDate.startIndex,offsetBy: 5)
        cell.detailTextLabel?.text = thisRecord.pubDate.substring(from: index)
    }
代替子串使用后缀.使用如下:
cell.detailTextLabel?.text = String(thisRecord.pubDate.suffix(from: index))
原文链接:https://www.f2er.com/swift/320231.html

猜你在找的Swift相关文章