I am new to Swift and I am trying to copy one array to another.
What I am trying to do is copy the content of Array1 to Array2. But the Array2 content should have contents from a particular index. For example:
Array1 have 100 elements ie. index from 0 to 99. In Array2 I want to copy say, elements from index 25 to last element(ie. 99).
How can I do it. I try searching the problem but did not get the solution.
Please help. Thanks in advance.