i\'ve just converted my little app but i\'ve found this error: \'substring(from:)\' is deprecated: Please use String slicing subscript with a \'partial range from\' operator
It means you should use the new partial range operator as your upperBound:
let str = "Hello World !!!" if let index = str.range(of: "Hello ")?.upperBound { let string = String(str[index...]) // "World !!!" }
In your case
cell.detailTextLabel?.text = String(thisRecord.pubDate[index...]))