I updated the xCode and I am full of warning
, almost all of them have been solved, but this one is missing
for var i:Int = row-1; i >= 0; i -= 1
It throws me the following warning:
C-style for statement is deprecated and will be removed in a future version of Swift
That kind of
for
will be deprecated inSwift 3.0
. The equivalent function would be the following:or failing that and probably more correct: