I have search a bit online but being new to Swift, I couldn't find anything that helped me convert a for loop to the upcoming Swift version.
I have this
for var i: CGFloat = start; i <= stop; i += step {
and trying to convert to the new format but unsure how.
Can someone please help before my code stops working?
Thanks :)