问题
let greenHex = hex.substring(with: Range<String.Index>(start: hex.index(hex.startIndex, offsetBy: 2), end: hex.index(hex.startIndex, offsetBy: 4)))
This is Swift3.0, hex is a string, but this code throws an error saying that:
Cannot invoke initializer for type 'Range' with an argument list of type '(start: String.Index, end: String.Index)'
回答1:
Range.init(start:end:) constructor was removed in Swift 3.0 so you initialize a range like follows:
let range = hex.index(hex.startIndex, offsetBy: 2)..<hex.index(hex.startIndex, offsetBy: 4)
which returns a half-open range of type <String.Index>. Then, you can do the following with that:
hex.substring(with: range)
来源:https://stackoverflow.com/questions/39802773/cannot-invoke-initializer-for-type-rangestring-index-with-an-argument-list-o