Swift中数组如何像OC中一样取subarrayWithRange获得子数组呢?
let a = [1,2,3,4,5,6] let b = a[2...5] //b = [3,4,5,6]
As above
What we get above is ArraySlice. We need to use Array to wrap it one layer
let a = [1,2,3,4,5,6] let b = a[0...1] //b is type of ArraySlice let b= Array(a[0...1]) //b is array
As above
What we get above is ArraySlice. We need to use Array to wrap it one layer