I have array and need to reverse it without Array.reverse method, only with a for loop.
Array.reverse
for
var names:[String] = [\"Apple\", \"Microsof
Here the code for swift 3
let array = ["IOS A", "IOS B", "IOS C"] for item in array.reversed() { print("Found \(item)") }