尝试使用扫描仪时,我收到警告称'scanLocation'在iOS 13.0中已弃用。由于能够从下一个位置进行扫描对于扫描String至关重要,因此想知道使用什么代替scanLocation。Apple的Scanner文档甚至都没有提到过时,更不用说什么代替了scanLocation。
不推荐使用scanLocation的示例:
while !scanner.isAtEnd {
print(scanner.scanUpToCharacters(from: brackets))
let block = scanner.string[scanner.currentIndex...]
print(block)
scanner.scanLocation = scanner.scanLocation + 1
}