urlContentArray [1] .componentsSeparatedByString( “”)

时间:2016-07-20 16:41:23

标签: ios swift

In,urlContentArray [1] .componentsSeparatedByString(“”)

我想用一系列数字替换“1”。

当我写urlContentArray [1 ..“)

我收到此错误消息:

类型'ArraySlice'的值没有成员'componentsSeparatedByString'

如何获得数字范围?

1 个答案:

答案 0 :(得分:0)

Database.LoadObjectResponse 是一个数组。当您使用urlContentArray时,它会返回urlContentArray[1]

因此,您可以使用此post中讨论的String方法进行拆分。

但是当你执行split或任何范围时,它会返回一个数组。 urlContentArray[1..3]没有任何名为array的方法。这就是你得到错误的原因。