当我尝试使用 subString 函数来获取特定文本时,
var str = "http://wikipedia.org"
let index = str.index(str.startIndex, offsetBy: 7)
str.substring(from: index)
xcode Version 8.3.2 (8E2002) 会提示错误:
"__TFE10FoundationSS9substringfT4fromVVSS13CharacterView5Index_SS", referenced from:
我做错了什么?