Closed ghost closed 6 years ago
Swift Compiler Warning:
'substring(to:)' is deprecated: Please use String slicing subscript with a 'partial range upto' operator.
'substring(from:)' is deprecated: Please use String slicing subscript with a 'partial range from' operator.
else { key = "" if let r = line.range(of: ":") { key = trim(line.substring(to: r.lowerBound)) value = trim(line.substring(from: r.upperBound)) }
Try re-downloading the whole project and DON'T run a pod install because I think you might have updated the pods and that messed stuff up.
Swift Compiler Warning:
'substring(to:)' is deprecated: Please use String slicing subscript with a 'partial range upto' operator.
'substring(from:)' is deprecated: Please use String slicing subscript with a 'partial range from' operator.
else { key = "" if let r = line.range(of: ":") { key = trim(line.substring(to: r.lowerBound)) value = trim(line.substring(from: r.upperBound)) }