I am a beginner of Swift for iOS development, and want to find an elegant way to loop through an array from the second element.
If it is in Objective-C, I think I ca
if array.count>=2 { for n in 1...array.count-1{ print(array[n]) //will print from second element forward } }