1
我想通過在索引數組開始循環(說「5」或任何其他),而不是迅速如何循環遍歷從不同索引開始的數組,同時仍然循環遍歷整個數組?
for (index, value) in array.enumerate() {
// do something
}
我想通過在索引數組開始循環(說「5」或任何其他),而不是迅速如何循環遍歷從不同索引開始的數組,同時仍然循環遍歷整個數組?
for (index, value) in array.enumerate() {
// do something
}
數組開始使用where
條款
for (index, value) in array.enumerate() where index > 4 { ...
順便說一句:更新你的Swift版本。迅速2是死
使用dropFirst
忽略第一項:
for (index, value) in array.enumerated().dropFirst(5) {
// your code here
}
相關:[如何通過陣列環路從所述第二元件在使用迅速優雅的方式](https://stackoverflow.com/問題/ 39070937 /如何對環通-AN-陣列從 - - 第二元件在優雅路-使用-SWIFT) –